| 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 a9d192cb37f6bb62240d85bcad4699725b8bf0a9..9ac3e9fa86d1c7bbe13851d66a4bdb0eaff27819 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 {
|
| + virtual 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 {
|
| + virtual 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 {
|
| + virtual TestingProfile* CreateProfile() override {
|
| TestingProfile::Builder builder;
|
| builder.AddTestingFactory(SigninManagerFactory::GetInstance(),
|
| FakeSigninManagerBase::Build);
|
|
|