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

Unified Diff: chrome/browser/apps/app_view_browsertest.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/apps/app_view_browsertest.cc
diff --git a/chrome/browser/apps/app_view_browsertest.cc b/chrome/browser/apps/app_view_browsertest.cc
index bcd9ff86f742168e1e26b46b2027c001621b4fdf..5be913067449afdf4642354b80669b75b6f53284 100644
--- a/chrome/browser/apps/app_view_browsertest.cc
+++ b/chrome/browser/apps/app_view_browsertest.cc
@@ -37,7 +37,7 @@ class TestGuestViewManager : public extensions::GuestViewManager {
private:
// GuestViewManager override:
virtual void AddGuest(int guest_instance_id,
- content::WebContents* guest_web_contents) OVERRIDE{
+ content::WebContents* guest_web_contents) override{
extensions::GuestViewManager::AddGuest(
guest_instance_id, guest_web_contents);
web_contents_ = guest_web_contents;
@@ -59,7 +59,7 @@ class TestGuestViewManagerFactory : public extensions::GuestViewManagerFactory {
virtual ~TestGuestViewManagerFactory() {}
virtual extensions::GuestViewManager* CreateGuestViewManager(
- content::BrowserContext* context) OVERRIDE {
+ content::BrowserContext* context) override {
return GetManager(context);
}
@@ -131,7 +131,7 @@ class AppViewTest : public extensions::PlatformAppBrowserTest {
}
private:
- virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
+ virtual void SetUpCommandLine(CommandLine* command_line) override {
extensions::PlatformAppBrowserTest::SetUpCommandLine(command_line);
}
« no previous file with comments | « chrome/browser/apps/app_url_redirector_browsertest.cc ('k') | chrome/browser/apps/app_window_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698