| Index: chrome/browser/rlz/rlz.cc
|
| diff --git a/chrome/browser/rlz/rlz.cc b/chrome/browser/rlz/rlz.cc
|
| index b740c4340665f2fef66d4a19137b00335eaa5023..2bc26fdec57e9c18080ed2629dd4261f71018d8d 100644
|
| --- a/chrome/browser/rlz/rlz.cc
|
| +++ b/chrome/browser/rlz/rlz.cc
|
| @@ -250,7 +250,7 @@ bool RLZTracker::InitRlzFromProfileDelayed(Profile* profile,
|
| // iOS does not have a notion of startpages.
|
| SessionStartupPref session_startup_prefs =
|
| StartupBrowserCreator::GetSessionStartupPref(
|
| - *CommandLine::ForCurrentProcess(), profile);
|
| + *base::CommandLine::ForCurrentProcess(), profile);
|
| if (session_startup_prefs.type == SessionStartupPref::URLS) {
|
| is_google_in_startpages =
|
| std::count_if(session_startup_prefs.urls.begin(),
|
| @@ -288,7 +288,7 @@ bool RLZTracker::Init(bool first_run,
|
| send_ping_immediately_ = send_ping_immediately;
|
|
|
| // Enable zero delays for testing.
|
| - if (CommandLine::ForCurrentProcess()->HasSwitch(::switches::kTestType))
|
| + if (base::CommandLine::ForCurrentProcess()->HasSwitch(::switches::kTestType))
|
| EnableZeroDelayForTesting();
|
|
|
| delay = std::min(kMaxInitDelay, std::max(min_init_delay_, delay));
|
|
|