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 |