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

Side by Side Diff: components/mus/android_loader.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
« no previous file with comments | « components/html_viewer/media_factory.cc ('k') | components/mus/android_loader.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 COMPONENTS_MUS_ANDROID_LOADER_H_ 5 #ifndef COMPONENTS_MUS_ANDROID_LOADER_H_
6 #define COMPONENTS_MUS_ANDROID_LOADER_H_ 6 #define COMPONENTS_MUS_ANDROID_LOADER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "mojo/shell/application_loader.h" 9 #include "mojo/shell/application_loader.h"
10 10
11 namespace mojo { 11 namespace mojo {
12 class ApplicationImpl; 12 class ApplicationImpl;
13 } 13 }
14 14
15 namespace mus { 15 namespace mus {
16 16
17 class AndroidLoader : public mojo::shell::ApplicationLoader { 17 class AndroidLoader : public mojo::shell::ApplicationLoader {
18 public: 18 public:
19 AndroidLoader(); 19 AndroidLoader();
20 ~AndroidLoader(); 20 ~AndroidLoader();
21 21
22 private: 22 private:
23 // Overridden from mojo::shell::ApplicationLoader: 23 // Overridden from mojo::shell::ApplicationLoader:
24 void Load( 24 void Load(
25 const GURL& url, 25 const GURL& url,
26 mojo::InterfaceRequest<mojo::Application> application_request) override; 26 mojo::InterfaceRequest<mojo::shell::mojom::Application> request) override;
27 27
28 scoped_ptr<mojo::ApplicationImpl> app_; 28 scoped_ptr<mojo::ApplicationImpl> app_;
29 29
30 DISALLOW_COPY_AND_ASSIGN(AndroidLoader); 30 DISALLOW_COPY_AND_ASSIGN(AndroidLoader);
31 }; 31 };
32 32
33 } // namespace mus 33 } // namespace mus
34 34
35 #endif // COMPONENTS_MUS_ANDROID_LOADER_H_ 35 #endif // COMPONENTS_MUS_ANDROID_LOADER_H_
OLDNEW
« no previous file with comments | « components/html_viewer/media_factory.cc ('k') | components/mus/android_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698