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

Unified Diff: content/child/blink_platform_impl.h

Issue 630743005: Replace OVERRIDE and FINAL with override and final in content/child/[a-s]* (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 | « content/child/appcache/appcache_frontend_impl.h ('k') | content/child/blink_platform_impl.cc » ('j') | 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 d82d8f41cf0905604f2009750be5d264166a609c..4a3c7b8fe8071ce52d31b4586530fc3c5ecbf668 100644
--- a/content/child/blink_platform_impl.h
+++ b/content/child/blink_platform_impl.h
@@ -64,27 +64,27 @@ class CONTENT_EXPORT BlinkPlatformImpl
virtual size_t numberOfProcessors();
virtual void startHeapProfiling(const blink::WebString& prefix);
- virtual void stopHeapProfiling() OVERRIDE;
+ virtual void stopHeapProfiling() override;
virtual void dumpHeapProfiling(const blink::WebString& reason);
- virtual blink::WebString getHeapProfile() OVERRIDE;
+ virtual blink::WebString getHeapProfile() override;
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() override;
virtual blink::WebURLLoader* createURLLoader();
virtual blink::WebSocketStreamHandle* createSocketStreamHandle();
- virtual blink::WebSocketHandle* createWebSocketHandle() OVERRIDE;
+ virtual blink::WebSocketHandle* createWebSocketHandle() override;
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 override;
+ virtual bool isReservedIPAddress(const blink::WebURL&) const override;
virtual blink::WebThread* createThread(const char* name);
virtual blink::WebThread* currentThread();
virtual void yieldCurrentThread();
@@ -148,13 +148,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) override;
virtual void didStartWorkerRunLoop(
- const blink::WebWorkerRunLoop& runLoop) OVERRIDE;
+ const blink::WebWorkerRunLoop& runLoop) override;
virtual void didStopWorkerRunLoop(
- const blink::WebWorkerRunLoop& runLoop) OVERRIDE;
- virtual blink::WebCrypto* crypto() OVERRIDE;
- virtual blink::WebGeofencingProvider* geofencingProvider() OVERRIDE;
+ const blink::WebWorkerRunLoop& runLoop) override;
+ virtual blink::WebCrypto* crypto() override;
+ virtual blink::WebGeofencingProvider* geofencingProvider() override;
void SuspendSharedTimer();
void ResumeSharedTimer();
« no previous file with comments | « content/child/appcache/appcache_frontend_impl.h ('k') | content/child/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698