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

Unified Diff: mojo/shell/mojo_url_resolver.h

Issue 658503003: Enables specifying mojo url mapping on command line (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 2 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 | « mojo/shell/desktop/mojo_main.cc ('k') | mojo/shell/mojo_url_resolver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/mojo_url_resolver.h
diff --git a/mojo/shell/mojo_url_resolver.h b/mojo/shell/mojo_url_resolver.h
index ccd9bf4eeea732c51a33d65f620694325990afd2..b7145dd98a6b859e67bddc0e2769869787f51764 100644
--- a/mojo/shell/mojo_url_resolver.h
+++ b/mojo/shell/mojo_url_resolver.h
@@ -8,6 +8,7 @@
#include <map>
#include <set>
+#include "base/basictypes.h"
#include "url/gurl.h"
namespace mojo {
@@ -27,7 +28,8 @@ class MojoURLResolver {
// inserted.
void SetBaseURL(const GURL& base_url);
- // Add a custom mapping for a particular "mojo:" URL.
+ // Add a custom mapping for a particular "mojo:" URL. If |resolved_url| is
+ // itself a mojo url normal resolution rules apply.
void AddCustomMapping(const GURL& mojo_url, const GURL& resolved_url);
// Add a local file mapping for a particular "mojo:" URL. This causes the
@@ -39,10 +41,17 @@ class MojoURLResolver {
GURL Resolve(const GURL& mojo_url) const;
private:
+ // Applies all custom mappings for |url|, returning the last non-mapped url.
+ // For example, if 'a' maps to 'b' and 'b' maps to 'c' calling this with 'a'
+ // returns 'c'.
+ GURL ApplyCustomMappings(const GURL& url) const;
+
std::map<GURL, GURL> url_map_;
std::set<GURL> local_file_set_;
GURL default_base_url_;
GURL base_url_;
+
+ DISALLOW_COPY_AND_ASSIGN(MojoURLResolver);
};
} // namespace shell
« no previous file with comments | « mojo/shell/desktop/mojo_main.cc ('k') | mojo/shell/mojo_url_resolver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698