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

Unified Diff: chromecast/browser/android/cast_window_android.h

Issue 917303002: Clean up redundant virtual specifiers for chromecast android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change dtor specifiers Created 5 years, 10 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
« no previous file with comments | « no previous file | chromecast/browser/android/external_video_surface_container_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/browser/android/cast_window_android.h
diff --git a/chromecast/browser/android/cast_window_android.h b/chromecast/browser/android/cast_window_android.h
index 015f73d87e1e83eea4f18e529cb42714f20079fd..7c5cd7415f1034921fd239d7e366d43a637a55e4 100644
--- a/chromecast/browser/android/cast_window_android.h
+++ b/chromecast/browser/android/cast_window_android.h
@@ -44,7 +44,7 @@ class CastWindowAndroid : public content::WebContentsDelegate,
content::BrowserContext* browser_context,
const GURL& url);
- virtual ~CastWindowAndroid();
+ ~CastWindowAndroid() override;
void LoadURL(const GURL& url);
// Calls RVH::ClosePage() and waits for acknowledgement before closing/
@@ -57,24 +57,24 @@ class CastWindowAndroid : public content::WebContentsDelegate,
static bool RegisterJni(JNIEnv* env);
// content::WebContentsDelegate implementation:
- virtual void AddNewContents(content::WebContents* source,
- content::WebContents* new_contents,
- WindowOpenDisposition disposition,
- const gfx::Rect& initial_rect,
- bool user_gesture,
- bool* was_blocked) override;
- virtual void CloseContents(content::WebContents* source) override;
- virtual bool CanOverscrollContent() const override;
- virtual bool AddMessageToConsole(content::WebContents* source,
- int32 level,
- const base::string16& message,
- int32 line_no,
- const base::string16& source_id) override;
- virtual void ActivateContents(content::WebContents* contents) override;
- virtual void DeactivateContents(content::WebContents* contents) override;
+ void AddNewContents(content::WebContents* source,
+ content::WebContents* new_contents,
+ WindowOpenDisposition disposition,
+ const gfx::Rect& initial_rect,
+ bool user_gesture,
+ bool* was_blocked) override;
+ void CloseContents(content::WebContents* source) override;
+ bool CanOverscrollContent() const override;
+ bool AddMessageToConsole(content::WebContents* source,
+ int32 level,
+ const base::string16& message,
+ int32 line_no,
+ const base::string16& source_id) override;
+ void ActivateContents(content::WebContents* contents) override;
+ void DeactivateContents(content::WebContents* contents) override;
// content::WebContentsObserver implementation:
- virtual void RenderProcessGone(base::TerminationStatus status) override;
+ void RenderProcessGone(base::TerminationStatus status) override;
private:
explicit CastWindowAndroid(content::BrowserContext* browser_context);
« no previous file with comments | « no previous file | chromecast/browser/android/external_video_surface_container_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698