| Index: components/precache/core/precache_fetcher.cc
|
| diff --git a/components/precache/core/precache_fetcher.cc b/components/precache/core/precache_fetcher.cc
|
| index 70abac7b6cf1c388e36d63ecca827fc16a4e0e3b..c854af843e6c1e01a5bc7a1de0e176305cebce69 100644
|
| --- a/components/precache/core/precache_fetcher.cc
|
| +++ b/components/precache/core/precache_fetcher.cc
|
| @@ -27,7 +27,8 @@ namespace precache {
|
| namespace {
|
|
|
| GURL GetConfigURL() {
|
| - const CommandLine& command_line = *CommandLine::ForCurrentProcess();
|
| + const base::CommandLine& command_line =
|
| + *base::CommandLine::ForCurrentProcess();
|
| if (command_line.HasSwitch(switches::kPrecacheConfigSettingsURL)) {
|
| return GURL(
|
| command_line.GetSwitchValueASCII(switches::kPrecacheConfigSettingsURL));
|
| @@ -43,7 +44,8 @@ GURL GetConfigURL() {
|
| }
|
|
|
| std::string GetManifestURLPrefix() {
|
| - const CommandLine& command_line = *CommandLine::ForCurrentProcess();
|
| + const base::CommandLine& command_line =
|
| + *base::CommandLine::ForCurrentProcess();
|
| if (command_line.HasSwitch(switches::kPrecacheManifestURLPrefix)) {
|
| return command_line.GetSwitchValueASCII(
|
| switches::kPrecacheManifestURLPrefix);
|
|
|