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

Unified Diff: android_webview/native/external_video_surface_container_impl.h

Issue 893343002: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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 | « android_webview/native/aw_web_resource_response_impl.h ('k') | android_webview/native/input_stream_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/external_video_surface_container_impl.h
diff --git a/android_webview/native/external_video_surface_container_impl.h b/android_webview/native/external_video_surface_container_impl.h
index ff741d82db180726ced517ce387964876b5b4fdd..29e7889e44db54f6ee5d69737b1a47db2297cb41 100644
--- a/android_webview/native/external_video_surface_container_impl.h
+++ b/android_webview/native/external_video_surface_container_impl.h
@@ -23,15 +23,15 @@ class ExternalVideoSurfaceContainerImpl
ExternalVideoSurfaceContainerImpl(content::WebContents* contents);
// ExternalVideoSurfaceContainer implementation.
- virtual void RequestExternalVideoSurface(
+ void RequestExternalVideoSurface(
int player_id,
const SurfaceCreatedCB& surface_created_cb,
const SurfaceDestroyedCB& surface_destroyed_cb) override;
- virtual int GetCurrentPlayerId() override;
- virtual void ReleaseExternalVideoSurface(int player_id) override;
- virtual void OnFrameInfoUpdated() override;
- virtual void OnExternalVideoSurfacePositionChanged(
- int player_id, const gfx::RectF& rect) override;
+ int GetCurrentPlayerId() override;
+ void ReleaseExternalVideoSurface(int player_id) override;
+ void OnFrameInfoUpdated() override;
+ void OnExternalVideoSurfacePositionChanged(int player_id,
+ const gfx::RectF& rect) override;
// Methods called from Java.
void SurfaceCreated(
@@ -39,7 +39,7 @@ class ExternalVideoSurfaceContainerImpl
void SurfaceDestroyed(JNIEnv* env, jobject obj, jint player_id);
private:
- virtual ~ExternalVideoSurfaceContainerImpl();
+ ~ExternalVideoSurfaceContainerImpl() override;
base::android::ScopedJavaGlobalRef<jobject> jobject_;
« no previous file with comments | « android_webview/native/aw_web_resource_response_impl.h ('k') | android_webview/native/input_stream_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698