1116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// Copyright 2014 The Chromium Authors. All rights reserved.
2116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// Use of this source code is governed by a BSD-style license that can be
3116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// found in the LICENSE file.
4116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
5116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch#include "mojo/public/cpp/application/application_delegate.h"
6116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
7116680a4aac90f2aa7413d9095a592090648e557Ben Murdochnamespace mojo {
8116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
9116680a4aac90f2aa7413d9095a592090648e557Ben MurdochApplicationDelegate::ApplicationDelegate() {}
10116680a4aac90f2aa7413d9095a592090648e557Ben MurdochApplicationDelegate::~ApplicationDelegate() {}
11116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
12116680a4aac90f2aa7413d9095a592090648e557Ben Murdochvoid ApplicationDelegate::Initialize(ApplicationImpl* app) {}
13116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
14116680a4aac90f2aa7413d9095a592090648e557Ben Murdochbool ApplicationDelegate::ConfigureIncomingConnection(
15116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch    ApplicationConnection* connection) {
16116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  return true;
17116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch}
18116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
19116680a4aac90f2aa7413d9095a592090648e557Ben Murdochbool ApplicationDelegate::ConfigureOutgoingConnection(
20116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch    ApplicationConnection* connection) {
21116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch  return true;
22116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch}
23116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
24116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch}  // namespace mojo
25