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

Unified Diff: content/browser/mojo/mojo_shell_context.h

Issue 1882423004: Move shell service to toplevel shell namespace (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/mojo/mojo_child_connection.cc ('k') | content/browser/mojo/mojo_shell_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/mojo/mojo_shell_context.h
diff --git a/content/browser/mojo/mojo_shell_context.h b/content/browser/mojo/mojo_shell_context.h
index 08a9500f17be73b9e1c37c00a9cd26d893ddc390..5fa2b5609e26667d6d182d897f6b18557f6238ff 100644
--- a/content/browser/mojo/mojo_shell_context.h
+++ b/content/browser/mojo/mojo_shell_context.h
@@ -32,7 +32,7 @@ class CONTENT_EXPORT MojoShellContext {
public:
using StaticApplicationMap =
std::map<std::string,
- base::Callback<std::unique_ptr<mojo::ShellClient>()>>;
+ base::Callback<std::unique_ptr<shell::ShellClient>()>>;
MojoShellContext();
~MojoShellContext();
@@ -45,9 +45,9 @@ class CONTENT_EXPORT MojoShellContext {
const std::string& user_id,
const std::string& name,
const std::string& requestor_name,
- mojo::shell::mojom::InterfaceProviderRequest request,
- mojo::shell::mojom::InterfaceProviderPtr exposed_services,
- const mojo::shell::mojom::Connector::ConnectCallback& callback);
+ shell::mojom::InterfaceProviderRequest request,
+ shell::mojom::InterfaceProviderPtr exposed_services,
+ const shell::mojom::Connector::ConnectCallback& callback);
static void SetApplicationsForTest(const StaticApplicationMap* apps);
@@ -60,15 +60,15 @@ class CONTENT_EXPORT MojoShellContext {
const std::string& user_id,
const std::string& name,
const std::string& requestor_name,
- mojo::shell::mojom::InterfaceProviderRequest request,
- mojo::shell::mojom::InterfaceProviderPtr exposed_services,
- const mojo::shell::mojom::Connector::ConnectCallback& callback);
+ shell::mojom::InterfaceProviderRequest request,
+ shell::mojom::InterfaceProviderPtr exposed_services,
+ const shell::mojom::Connector::ConnectCallback& callback);
static base::LazyInstance<std::unique_ptr<Proxy>> proxy_;
std::unique_ptr<BuiltinManifestProvider> manifest_provider_;
std::unique_ptr<catalog::Factory> catalog_;
- std::unique_ptr<mojo::shell::Shell> shell_;
+ std::unique_ptr<shell::Shell> shell_;
DISALLOW_COPY_AND_ASSIGN(MojoShellContext);
};
« no previous file with comments | « content/browser/mojo/mojo_child_connection.cc ('k') | content/browser/mojo/mojo_shell_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698