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

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

Issue 1874703003: Load ash_sysui resources with ResourceLoader. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 8 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/mus/BUILD.gn ('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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_MUS_ANDROID_LOADER_H_
6 #define COMPONENTS_MUS_ANDROID_LOADER_H_
7
8 #include "base/macros.h"
9 #include "mojo/shell/loader.h"
10
11 namespace mojo {
12 class ShellConnection;
13 }
14
15 namespace mus {
16
17 class AndroidLoader : public mojo::shell::Loader {
18 public:
19 AndroidLoader();
20 ~AndroidLoader();
21
22 private:
23 // Overridden from mojo::shell::Loader:
24 void Load(const std::string& name,
25 mojo::shell::mojom::ShellClientRequest request) override;
26
27 scoped_ptr<mojo::ShellConnection> app_;
28
29 DISALLOW_COPY_AND_ASSIGN(AndroidLoader);
30 };
31
32 } // namespace mus
33
34 #endif // COMPONENTS_MUS_ANDROID_LOADER_H_
OLDNEW
« no previous file with comments | « components/mus/BUILD.gn ('k') | components/mus/android_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698