diff options
Diffstat (limited to 'mojo/shell/mojo_url_resolver.h')
-rw-r--r-- | mojo/shell/mojo_url_resolver.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mojo/shell/mojo_url_resolver.h b/mojo/shell/mojo_url_resolver.h index c82845c..ccd9bf4 100644 --- a/mojo/shell/mojo_url_resolver.h +++ b/mojo/shell/mojo_url_resolver.h @@ -31,7 +31,7 @@ class MojoURLResolver { void AddCustomMapping(const GURL& mojo_url, const GURL& resolved_url); // Add a local file mapping for a particular "mojo:" URL. This causes the - // "mojo:" URL to be resolved to an base::DIR_EXE-relative shared library. + // "mojo:" URL to be resolved to a base::DIR_MODULE-relative shared library. void AddLocalFileMapping(const GURL& mojo_url); // Resolve the given "mojo:" URL to the URL that should be used to fetch the @@ -41,6 +41,7 @@ class MojoURLResolver { private: std::map<GURL, GURL> url_map_; std::set<GURL> local_file_set_; + GURL default_base_url_; GURL base_url_; }; |