| Index: chrome/browser/history/history_browsertest.cc
|
| diff --git a/chrome/browser/history/history_browsertest.cc b/chrome/browser/history/history_browsertest.cc
|
| index 0321a18226e6e1d65f30ad5c484f55d84aefb7b0..90fd7db35640fd450c6ef87d276a2b71977ec18d 100644
|
| --- a/chrome/browser/history/history_browsertest.cc
|
| +++ b/chrome/browser/history/history_browsertest.cc
|
| @@ -43,17 +43,15 @@ class WaitForHistoryTask : public history::HistoryDBTask {
|
| public:
|
| WaitForHistoryTask() {}
|
|
|
| - virtual bool RunOnDBThread(history::HistoryBackend* backend,
|
| - history::HistoryDatabase* db) override {
|
| + bool RunOnDBThread(history::HistoryBackend* backend,
|
| + history::HistoryDatabase* db) override {
|
| return true;
|
| }
|
|
|
| - virtual void DoneRunOnMainThread() override {
|
| - base::MessageLoop::current()->Quit();
|
| - }
|
| + void DoneRunOnMainThread() override { base::MessageLoop::current()->Quit(); }
|
|
|
| private:
|
| - virtual ~WaitForHistoryTask() {}
|
| + ~WaitForHistoryTask() override {}
|
|
|
| DISALLOW_COPY_AND_ASSIGN(WaitForHistoryTask);
|
| };
|
| @@ -62,7 +60,7 @@ class WaitForHistoryTask : public history::HistoryDBTask {
|
|
|
| class HistoryBrowserTest : public InProcessBrowserTest {
|
| protected:
|
| - virtual void SetUpCommandLine(CommandLine* command_line) override {
|
| + void SetUpCommandLine(CommandLine* command_line) override {
|
| command_line->AppendSwitch(switches::kEnableFileCookies);
|
| }
|
|
|
|
|