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

Unified Diff: content/public/browser/content_browser_client.h

Issue 1743473002: Change Mojo URLs to structured names (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@18collapse
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/gpu/gpu_process_control_impl.cc ('k') | content/public/browser/mojo_app_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/content_browser_client.h
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
index 9e6c1745d80d750c65cfa8fbc47d39881ce421e7..b8b935907337ca5bbb98e392c236be5551a88fe1 100644
--- a/content/public/browser/content_browser_client.h
+++ b/content/public/browser/content_browser_client.h
@@ -658,14 +658,14 @@ class CONTENT_EXPORT ContentBrowserClient {
RenderFrameHost* render_frame_host) {}
using StaticMojoApplicationMap =
- std::map<GURL, base::Callback<scoped_ptr<mojo::ShellClient>()>>;
+ std::map<std::string, base::Callback<scoped_ptr<mojo::ShellClient>()>>;
// Registers Mojo applications to be loaded in the browser process by the
// browser's global Mojo shell.
virtual void RegisterInProcessMojoApplications(
StaticMojoApplicationMap* apps) {}
- using OutOfProcessMojoApplicationMap = std::map<GURL, base::string16>;
+ using OutOfProcessMojoApplicationMap = std::map<std::string, base::string16>;
// Registers Mojo applications to be loaded out of the browser process, in a
// sandboxed utility process. The value of each map entry should be the
« no previous file with comments | « content/gpu/gpu_process_control_impl.cc ('k') | content/public/browser/mojo_app_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698