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

Unified Diff: content/child/blink_platform_impl.h

Issue 679523004: Remove overrides in BlinkPlatformImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/blink_platform_impl.h
diff --git a/content/child/blink_platform_impl.h b/content/child/blink_platform_impl.h
index 060fbf0b055718bb2c065deaaff0ddef61f44587..2554577a54fa5e69df80021d6470e7981bc75e7e 100644
--- a/content/child/blink_platform_impl.h
+++ b/content/child/blink_platform_impl.h
@@ -64,26 +64,26 @@ class CONTENT_EXPORT BlinkPlatformImpl
virtual size_t numberOfProcessors();
virtual void startHeapProfiling(const blink::WebString& prefix);
- virtual void stopHeapProfiling() override;
+ virtual void stopHeapProfiling();
virtual void dumpHeapProfiling(const blink::WebString& reason);
- virtual blink::WebString getHeapProfile() override;
+ virtual blink::WebString getHeapProfile();
virtual bool processMemorySizesInBytes(size_t* private_bytes,
size_t* shared_bytes);
virtual bool memoryAllocatorWasteInBytes(size_t* size);
virtual blink::WebDiscardableMemory* allocateAndLockDiscardableMemory(
size_t bytes);
- virtual size_t maxDecodedImageBytes() override;
+ virtual size_t maxDecodedImageBytes();
virtual blink::WebURLLoader* createURLLoader();
- virtual blink::WebSocketHandle* createWebSocketHandle() override;
+ virtual blink::WebSocketHandle* createWebSocketHandle();
virtual blink::WebString userAgent();
virtual blink::WebData parseDataURL(
const blink::WebURL& url, blink::WebString& mimetype,
blink::WebString& charset);
virtual blink::WebURLError cancelledError(const blink::WebURL& url) const;
virtual bool isReservedIPAddress(
- const blink::WebSecurityOrigin&) const override;
- virtual bool isReservedIPAddress(const blink::WebURL&) const override;
+ const blink::WebSecurityOrigin&) const;
+ virtual bool isReservedIPAddress(const blink::WebURL&) const;
virtual blink::WebThread* createThread(const char* name);
virtual blink::WebThread* currentThread();
virtual void yieldCurrentThread();
@@ -147,13 +147,13 @@ class CONTENT_EXPORT BlinkPlatformImpl
virtual blink::WebGestureCurve* createFlingAnimationCurve(
blink::WebGestureDevice device_source,
const blink::WebFloatPoint& velocity,
- const blink::WebSize& cumulative_scroll) override;
+ const blink::WebSize& cumulative_scroll);
virtual void didStartWorkerRunLoop(
- const blink::WebWorkerRunLoop& runLoop) override;
+ const blink::WebWorkerRunLoop& runLoop);
virtual void didStopWorkerRunLoop(
- const blink::WebWorkerRunLoop& runLoop) override;
- virtual blink::WebCrypto* crypto() override;
- virtual blink::WebGeofencingProvider* geofencingProvider() override;
+ const blink::WebWorkerRunLoop& runLoop);
+ virtual blink::WebCrypto* crypto();
+ virtual blink::WebGeofencingProvider* geofencingProvider();
void SuspendSharedTimer();
void ResumeSharedTimer();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698