| Index: chrome/browser/ui/tab_contents/core_tab_helper.cc
|
| diff --git a/chrome/browser/ui/tab_contents/core_tab_helper.cc b/chrome/browser/ui/tab_contents/core_tab_helper.cc
|
| index 7305c7368989d5b7605502e478245593f361b8da..78b13a62a11dccc791be96eb812b825cba56bd58 100644
|
| --- a/chrome/browser/ui/tab_contents/core_tab_helper.cc
|
| +++ b/chrome/browser/ui/tab_contents/core_tab_helper.cc
|
| @@ -150,8 +150,9 @@ void CoreTabHelper::WasShown() {
|
| void CoreTabHelper::WebContentsDestroyed() {
|
| // OnCloseStarted isn't called in unit tests.
|
| if (!close_start_time_.is_null()) {
|
| - bool fast_tab_close_enabled = CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableFastUnload);
|
| + bool fast_tab_close_enabled =
|
| + base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| + switches::kEnableFastUnload);
|
|
|
| if (fast_tab_close_enabled) {
|
| base::TimeTicks now = base::TimeTicks::Now();
|
|
|