Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(683)

Unified Diff: chrome/browser/search/suggestions/image_fetcher_impl_browsertest.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/search/suggestions/image_fetcher_impl_browsertest.cc
diff --git a/chrome/browser/search/suggestions/image_fetcher_impl_browsertest.cc b/chrome/browser/search/suggestions/image_fetcher_impl_browsertest.cc
index 8b4fcfda2f48db3b43a0c35cf030ae31e0a9277d..9f32ba9b1064042b6b310658d2298fc486d9cff2 100644
--- a/chrome/browser/search/suggestions/image_fetcher_impl_browsertest.cc
+++ b/chrome/browser/search/suggestions/image_fetcher_impl_browsertest.cc
@@ -38,7 +38,7 @@ class TestImageFetcherDelegate : public ImageFetcherDelegate {
// Perform additional tasks when an image has been fetched.
virtual void OnImageFetched(const GURL& url, const SkBitmap* bitmap)
- OVERRIDE {
+ override {
if (bitmap) {
num_delegate_valid_called_++;
} else {
@@ -65,12 +65,12 @@ class ImageFetcherImplBrowserTest : public InProcessBrowserTest {
net::SpawnedTestServer::kLocalhost,
base::FilePath(kDocRoot)) {}
- virtual void SetUpInProcessBrowserTestFixture() OVERRIDE {
+ virtual void SetUpInProcessBrowserTestFixture() override {
ASSERT_TRUE(test_server_.Start());
InProcessBrowserTest::SetUpInProcessBrowserTestFixture();
}
- virtual void TearDownInProcessBrowserTestFixture() OVERRIDE {
+ virtual void TearDownInProcessBrowserTestFixture() override {
test_server_.Stop();
}

Powered by Google App Engine
This is Rietveld 408576698