Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: mojo/shell/shell_application_delegate.h

Issue 1679573002: Move shell interfaces into the shell.mojom namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegate
Patch Set: . Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MOJO_SHELL_SHELL_APPLICATION_DELEGATE_H_ 5 #ifndef MOJO_SHELL_SHELL_APPLICATION_DELEGATE_H_
6 #define MOJO_SHELL_SHELL_APPLICATION_DELEGATE_H_ 6 #define MOJO_SHELL_SHELL_APPLICATION_DELEGATE_H_
7 7
8 #include "mojo/shell/public/cpp/application_delegate.h" 8 #include "mojo/shell/public/cpp/application_delegate.h"
9 9
10 #include <stdint.h> 10 #include <stdint.h>
(...skipping 22 matching lines...) Expand all
33 33
34 // Overridden from InterfaceFactory<mojom::ApplicationManager>: 34 // Overridden from InterfaceFactory<mojom::ApplicationManager>:
35 void Create( 35 void Create(
36 ApplicationConnection* connection, 36 ApplicationConnection* connection,
37 InterfaceRequest<mojom::ApplicationManager> request) override; 37 InterfaceRequest<mojom::ApplicationManager> request) override;
38 38
39 // Overridden from mojom::ApplicationManager: 39 // Overridden from mojom::ApplicationManager:
40 void CreateInstanceForHandle( 40 void CreateInstanceForHandle(
41 ScopedHandle channel, 41 ScopedHandle channel,
42 const String& url, 42 const String& url,
43 CapabilityFilterPtr filter, 43 mojom::CapabilityFilterPtr filter,
44 InterfaceRequest<mojom::PIDReceiver> pid_receiver) override; 44 InterfaceRequest<mojom::PIDReceiver> pid_receiver) override;
45 void AddListener( 45 void AddListener(
46 mojom::ApplicationManagerListenerPtr listener) override; 46 mojom::ApplicationManagerListenerPtr listener) override;
47 47
48 mojo::shell::ApplicationManager* manager_; 48 mojo::shell::ApplicationManager* manager_;
49 49
50 WeakBindingSet<mojom::ApplicationManager> bindings_; 50 WeakBindingSet<mojom::ApplicationManager> bindings_;
51 51
52 DISALLOW_COPY_AND_ASSIGN(ShellApplicationDelegate); 52 DISALLOW_COPY_AND_ASSIGN(ShellApplicationDelegate);
53 }; 53 };
54 54
55 } // namespace shell 55 } // namespace shell
56 } // namespace mojo 56 } // namespace mojo
57 57
58 #endif // MOJO_SHELL_SHELL_APPLICATION_DELEGATE_H_ 58 #endif // MOJO_SHELL_SHELL_APPLICATION_DELEGATE_H_
OLDNEW
« no previous file with comments | « mojo/shell/runner/host/out_of_process_native_runner.cc ('k') | mojo/shell/shell_application_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698