Index: chrome/browser/chromeos/chrome_browser_main_chromeos.cc |
diff --git a/chrome/browser/chromeos/chrome_browser_main_chromeos.cc b/chrome/browser/chromeos/chrome_browser_main_chromeos.cc |
index 6ac134048e5c31c26ada9edd9a81b48b2e98e931..88a353524fb181a1a68d76fabaa1956e8984b3f3 100644 |
--- a/chrome/browser/chromeos/chrome_browser_main_chromeos.cc |
+++ b/chrome/browser/chromeos/chrome_browser_main_chromeos.cc |
@@ -71,7 +71,7 @@ static base::LazyInstance<MessageLoopObserver> g_message_loop_observer( |
ChromeBrowserMainPartsChromeos::ChromeBrowserMainPartsChromeos( |
const MainFunctionParams& parameters) |
- : ChromeBrowserMainPartsBase(parameters) { |
+ : ChromeBrowserMainPartsLinux(parameters) { |
} |
ChromeBrowserMainPartsChromeos::~ChromeBrowserMainPartsChromeos() { |
@@ -99,7 +99,7 @@ ChromeBrowserMainPartsChromeos::~ChromeBrowserMainPartsChromeos() { |
} |
void ChromeBrowserMainPartsChromeos::PreEarlyInitialization() { |
- ChromeBrowserMainPartsBase::PreEarlyInitialization(); |
+ ChromeBrowserMainPartsLinux::PreEarlyInitialization(); |
if (parsed_command_line().HasSwitch(switches::kGuestSession)) { |
// Disable sync and extensions if we're in "browse without sign-in" mode. |
CommandLine* singleton_command_line = CommandLine::ForCurrentProcess(); |
@@ -110,7 +110,7 @@ void ChromeBrowserMainPartsChromeos::PreEarlyInitialization() { |
} |
void ChromeBrowserMainPartsChromeos::PreMainMessageLoopStart() { |
- ChromeBrowserMainPartsBase::PreMainMessageLoopStart(); |
+ ChromeBrowserMainPartsLinux::PreMainMessageLoopStart(); |
// Initialize CrosLibrary only for the browser, unless running tests |
// (which do their own CrosLibrary setup). |
if (!parameters().ui_task) { |
@@ -125,7 +125,7 @@ void ChromeBrowserMainPartsChromeos::PreMainMessageLoopStart() { |
void ChromeBrowserMainPartsChromeos::PreMainMessageLoopRun() { |
// FILE thread is created in ChromeBrowserMainParts::PreMainMessageLoopRun(). |
- ChromeBrowserMainPartsBase::PreMainMessageLoopRun(); |
+ ChromeBrowserMainPartsLinux::PreMainMessageLoopRun(); |
// Get the statistics provider instance here to start loading statistcs |
// on the background FILE thread. |
chromeos::system::StatisticsProvider::GetInstance(); |