| Index: chrome/browser/first_run/first_run.cc
|
| diff --git a/chrome/browser/first_run/first_run.cc b/chrome/browser/first_run/first_run.cc
|
| index 9ff9d5b1d7be4126db22873ef00c2b8b191725ba..f5c40b3d0719f528dfc0bbb520fce7e8d9150085 100644
|
| --- a/chrome/browser/first_run/first_run.cc
|
| +++ b/chrome/browser/first_run/first_run.cc
|
| @@ -88,7 +88,7 @@ class ImportEndedObserver : public importer::ImporterProgressObserver {
|
| virtual void ImportEnded() OVERRIDE {
|
| ended_ = true;
|
| if (should_quit_message_loop_)
|
| - MessageLoop::current()->Quit();
|
| + base::MessageLoop::current()->Quit();
|
| }
|
|
|
| void set_should_quit_message_loop() {
|
| @@ -244,7 +244,7 @@ void ImportFromSourceProfile(ImporterHost* importer_host,
|
| // If the import process has not errored out, block on it.
|
| if (!observer.ended()) {
|
| observer.set_should_quit_message_loop();
|
| - MessageLoop::current()->Run();
|
| + base::MessageLoop::current()->Run();
|
| }
|
| }
|
|
|
|
|