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

Side by Side Diff: services/shell/loader.h

Issue 1899583002: Revert of Remove shell::Loader (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « services/shell/background/background_shell.cc ('k') | services/shell/shell.h » ('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 2014 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 SERVICES_SHELL_LOADER_H_
6 #define SERVICES_SHELL_LOADER_H_
7
8 #include "base/callback.h"
9 #include "mojo/public/cpp/system/core.h"
10 #include "services/shell/public/interfaces/connector.mojom.h"
11 #include "services/shell/public/interfaces/shell_client.mojom.h"
12
13 namespace shell {
14
15 // Interface to implement special loading behavior for a particular name.
16 class Loader {
17 public:
18 virtual ~Loader() {}
19
20 virtual void Load(const std::string& name,
21 mojom::ShellClientRequest request) = 0;
22 };
23
24 } // namespace shell
25
26 #endif // SERVICES_SHELL_LOADER_H_
OLDNEW
« no previous file with comments | « services/shell/background/background_shell.cc ('k') | services/shell/shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698