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

Side by Side Diff: components/mus/android_loader.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 4 years, 12 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/mime_util/mime_util.cc ('k') | components/mus/common/transient_window_utils.h » ('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 "mojo/shell/application_loader.h" 9 #include "mojo/shell/application_loader.h"
9 10
10 namespace mojo { 11 namespace mojo {
11 class ApplicationImpl; 12 class ApplicationImpl;
12 } 13 }
13 14
14 namespace mus { 15 namespace mus {
15 16
16 class AndroidLoader : public mojo::shell::ApplicationLoader { 17 class AndroidLoader : public mojo::shell::ApplicationLoader {
17 public: 18 public:
18 AndroidLoader(); 19 AndroidLoader();
19 ~AndroidLoader(); 20 ~AndroidLoader();
20 21
21 private: 22 private:
22 // Overridden from mojo::shell::ApplicationLoader: 23 // Overridden from mojo::shell::ApplicationLoader:
23 void Load( 24 void Load(
24 const GURL& url, 25 const GURL& url,
25 mojo::InterfaceRequest<mojo::Application> application_request) override; 26 mojo::InterfaceRequest<mojo::Application> application_request) override;
26 27
27 scoped_ptr<mojo::ApplicationImpl> app_; 28 scoped_ptr<mojo::ApplicationImpl> app_;
28 29
29 DISALLOW_COPY_AND_ASSIGN(AndroidLoader); 30 DISALLOW_COPY_AND_ASSIGN(AndroidLoader);
30 }; 31 };
31 32
32 } // namespace mus 33 } // namespace mus
33 34
34 #endif // COMPONENTS_MUS_ANDROID_LOADER_H_ 35 #endif // COMPONENTS_MUS_ANDROID_LOADER_H_
OLDNEW
« no previous file with comments | « components/mime_util/mime_util.cc ('k') | components/mus/common/transient_window_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698