| Index: chrome/browser/history/android/android_history_provider_service_unittest.cc
|
| diff --git a/chrome/browser/history/android/android_history_provider_service_unittest.cc b/chrome/browser/history/android/android_history_provider_service_unittest.cc
|
| index ca59252c5f69be9de97c9d6ca884c2772193314c..2fadfdc6120b5de4d11dedcc452bf29471c900d0 100644
|
| --- a/chrome/browser/history/android/android_history_provider_service_unittest.cc
|
| +++ b/chrome/browser/history/android/android_history_provider_service_unittest.cc
|
| @@ -40,11 +40,10 @@ class AndroidHistoryProviderServiceTest : public testing::Test {
|
| ui_thread_(BrowserThread::UI, &message_loop_),
|
| file_thread_(BrowserThread::FILE, &message_loop_) {
|
| }
|
| - virtual ~AndroidHistoryProviderServiceTest() {
|
| - }
|
| + ~AndroidHistoryProviderServiceTest() override {}
|
|
|
| protected:
|
| - virtual void SetUp() override {
|
| + void SetUp() override {
|
| // Setup the testing profile, so the bookmark_model_sql_handler could
|
| // get the bookmark model from it.
|
| ASSERT_TRUE(profile_manager_.SetUp());
|
| @@ -60,7 +59,7 @@ class AndroidHistoryProviderServiceTest : public testing::Test {
|
| service_.reset(new AndroidHistoryProviderService(testing_profile_));
|
| }
|
|
|
| - virtual void TearDown() override {
|
| + void TearDown() override {
|
| testing_profile_->DestroyHistoryService();
|
| profile_manager_.DeleteTestingProfile(chrome::kInitialProfile);
|
| testing_profile_=NULL;
|
|
|