| Index: chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
|
| diff --git a/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc b/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
|
| index 2852608ae641730cd5ead3db649f0d9ce718d42e..5d6debdb6ad1dd294aabda9b48ec83517bbc2c44 100644
|
| --- a/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
|
| +++ b/chrome/browser/ui/sync/profile_signin_confirmation_helper.cc
|
| @@ -43,7 +43,7 @@ class HasTypedURLsTask : public history::HistoryDBTask {
|
| }
|
|
|
| virtual bool RunOnDBThread(history::HistoryBackend* backend,
|
| - history::HistoryDatabase* db) OVERRIDE {
|
| + history::HistoryDatabase* db) override {
|
| history::URLRows rows;
|
| backend->GetAllTypedURLs(&rows);
|
| if (!rows.empty()) {
|
| @@ -54,7 +54,7 @@ class HasTypedURLsTask : public history::HistoryDBTask {
|
| return true;
|
| }
|
|
|
| - virtual void DoneRunOnMainThread() OVERRIDE {
|
| + virtual void DoneRunOnMainThread() override {
|
| cb_.Run(has_typed_urls_);
|
| }
|
|
|
|
|