Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / favicon_downloader_unittest.cc
index 82ace4a..42de071 100644 (file)
@@ -31,8 +31,7 @@ class FaviconDownloaderTest : public ChromeRenderViewHostTestHarness {
   FaviconDownloaderTest() {
   }
 
-  virtual ~FaviconDownloaderTest() {
-  }
+  ~FaviconDownloaderTest() override {}
 
  private:
   DISALLOW_COPY_AND_ASSIGN(FaviconDownloaderTest);
@@ -51,14 +50,11 @@ class TestFaviconDownloader : public FaviconDownloader {
                        base::Unretained(this))),
         id_counter_(0) {
   }
-  virtual ~TestFaviconDownloader() {}
+  ~TestFaviconDownloader() override {}
 
-  virtual int DownloadImage(const GURL& url) OVERRIDE {
-    return id_counter_++;
-  }
+  int DownloadImage(const GURL& url) override { return id_counter_++; }
 
-  virtual std::vector<content::FaviconURL> GetFaviconURLsFromWebContents()
-      OVERRIDE {
+  std::vector<content::FaviconURL> GetFaviconURLsFromWebContents() override {
     return initial_favicon_urls_;
   }