| Index: chrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc
|
| diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc
|
| index e4d4c0d85f3f3a27bef94ac7b7a1fe31dae4cc99..c27b8e895d64cb0b35ba0b7b7daf2621a1a1c39f 100644
|
| --- a/chrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc
|
| +++ b/chrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc
|
| @@ -25,7 +25,7 @@ class BookmarkBubbleViewTest : public BrowserWithTestWindowTest {
|
| BookmarkBubbleViewTest() {}
|
|
|
| // testing::Test:
|
| - virtual void SetUp() override {
|
| + void SetUp() override {
|
| BrowserWithTestWindowTest::SetUp();
|
|
|
| profile()->CreateBookmarkModel(true);
|
| @@ -37,7 +37,7 @@ class BookmarkBubbleViewTest : public BrowserWithTestWindowTest {
|
| bookmark_model, GURL(kTestBookmarkURL), base::string16());
|
| }
|
|
|
| - virtual void TearDown() override {
|
| + void TearDown() override {
|
| // Make sure the bubble is destroyed before the profile to avoid a crash.
|
| bubble_.reset();
|
|
|
| @@ -45,7 +45,7 @@ class BookmarkBubbleViewTest : public BrowserWithTestWindowTest {
|
| }
|
|
|
| // BrowserWithTestWindowTest:
|
| - virtual TestingProfile* CreateProfile() override {
|
| + TestingProfile* CreateProfile() override {
|
| TestingProfile::Builder builder;
|
| builder.AddTestingFactory(SigninManagerFactory::GetInstance(),
|
| FakeSigninManagerBase::Build);
|
|
|