| Index: chrome/browser/download/save_page_browsertest.cc
|
| diff --git a/chrome/browser/download/save_page_browsertest.cc b/chrome/browser/download/save_page_browsertest.cc
|
| index 47f6cc5f9cbec00b09410130e5a00c87cbf73b9f..eff3068dd3844c76aac59f28a659a5dfbc9f3cee 100644
|
| --- a/chrome/browser/download/save_page_browsertest.cc
|
| +++ b/chrome/browser/download/save_page_browsertest.cc
|
| @@ -89,7 +89,7 @@ class DownloadPersistedObserver : public DownloadHistory::Observer {
|
| const history::DownloadRow& info) OVERRIDE {
|
| persisted_ = filter_.Run(item, info);
|
| if (persisted_ && waiting_)
|
| - MessageLoopForUI::current()->Quit();
|
| + base::MessageLoopForUI::current()->Quit();
|
| }
|
|
|
| private:
|
| @@ -129,7 +129,7 @@ class DownloadRemovedObserver : public DownloadPersistedObserver {
|
| virtual void OnDownloadsRemoved(const DownloadHistory::IdSet& ids) OVERRIDE {
|
| removed_ = ids.find(download_id_) != ids.end();
|
| if (removed_ && waiting_)
|
| - MessageLoopForUI::current()->Quit();
|
| + base::MessageLoopForUI::current()->Quit();
|
| }
|
|
|
| private:
|
| @@ -230,14 +230,14 @@ class DownloadItemCreatedObserver : public DownloadManager::Observer {
|
| items_seen_.push_back(item);
|
|
|
| if (waiting_)
|
| - MessageLoopForUI::current()->Quit();
|
| + base::MessageLoopForUI::current()->Quit();
|
| }
|
|
|
| virtual void ManagerGoingDown(DownloadManager* manager) OVERRIDE {
|
| manager_->RemoveObserver(this);
|
| manager_ = NULL;
|
| if (waiting_)
|
| - MessageLoopForUI::current()->Quit();
|
| + base::MessageLoopForUI::current()->Quit();
|
| }
|
|
|
| bool waiting_;
|
|
|