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

Unified Diff: mojo/services/html_viewer/test_blink_platform_impl.h

Issue 1037363002: Remove unnecessary 'virtual' annotation from mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved merge conflicts Created 5 years, 9 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 | « mojo/services/html_viewer/mojo_blink_platform_impl.h ('k') | mojo/services/html_viewer/webclipboard_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/html_viewer/test_blink_platform_impl.h
diff --git a/mojo/services/html_viewer/test_blink_platform_impl.h b/mojo/services/html_viewer/test_blink_platform_impl.h
index 66c89444339b9cbc029a3eb36e2d410da475e6ee..8745c6f0e87bae380dd6c007c4fb5f10d2735db2 100644
--- a/mojo/services/html_viewer/test_blink_platform_impl.h
+++ b/mojo/services/html_viewer/test_blink_platform_impl.h
@@ -15,12 +15,12 @@ namespace html_viewer {
class TestBlinkPlatformImpl : public BlinkPlatformImpl {
public:
TestBlinkPlatformImpl();
- virtual ~TestBlinkPlatformImpl();
+ ~TestBlinkPlatformImpl() override;
private:
// blink::Platform methods:
- virtual blink::WebCookieJar* cookieJar();
- virtual blink::WebClipboard* clipboard();
+ blink::WebCookieJar* cookieJar() override;
+ blink::WebClipboard* clipboard() override;
blink::WebClipboard clipboard_;
blink::WebCookieJar cookie_jar_;
« no previous file with comments | « mojo/services/html_viewer/mojo_blink_platform_impl.h ('k') | mojo/services/html_viewer/webclipboard_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698