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

Unified Diff: content/renderer/pepper/pepper_webplugin_impl.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (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/renderer/pepper/pepper_video_source_host.h ('k') | content/renderer/pepper/pepper_websocket_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/pepper_webplugin_impl.h
diff --git a/content/renderer/pepper/pepper_webplugin_impl.h b/content/renderer/pepper/pepper_webplugin_impl.h
index 291e5c1ff6f5f80ff6d7a1aa797ecbce8d3d1a77..c11bcebce3befe1d1ba3b0f8a97e97ce1e7bc6d2 100644
--- a/content/renderer/pepper/pepper_webplugin_impl.h
+++ b/content/renderer/pepper/pepper_webplugin_impl.h
@@ -42,7 +42,7 @@ class PepperWebPluginImpl : public blink::WebPlugin {
virtual bool initialize(blink::WebPluginContainer* container);
virtual void destroy();
virtual v8::Local<v8::Object> v8ScriptableObject(
- v8::Isolate* isolate) OVERRIDE;
+ v8::Isolate* isolate) override;
virtual bool getFormValue(blink::WebString& value);
virtual void paint(blink::WebCanvas* canvas, const blink::WebRect& rect);
virtual void updateGeometry(
@@ -74,16 +74,16 @@ class PepperWebPluginImpl : public blink::WebPlugin {
int identifier);
virtual void selectFindResult(bool forward);
virtual void stopFind();
- virtual bool supportsPaginatedPrint() OVERRIDE;
- virtual bool isPrintScalingDisabled() OVERRIDE;
+ virtual bool supportsPaginatedPrint() override;
+ virtual bool isPrintScalingDisabled() override;
- virtual int printBegin(const blink::WebPrintParams& print_params) OVERRIDE;
- virtual bool printPage(int page_number, blink::WebCanvas* canvas) OVERRIDE;
- virtual void printEnd() OVERRIDE;
+ virtual int printBegin(const blink::WebPrintParams& print_params) override;
+ virtual bool printPage(int page_number, blink::WebCanvas* canvas) override;
+ virtual void printEnd() override;
- virtual bool canRotateView() OVERRIDE;
- virtual void rotateView(RotationType type) OVERRIDE;
- virtual bool isPlaceholder() OVERRIDE;
+ virtual bool canRotateView() override;
+ virtual void rotateView(RotationType type) override;
+ virtual bool isPlaceholder() override;
private:
friend class base::DeleteHelper<PepperWebPluginImpl>;
« no previous file with comments | « content/renderer/pepper/pepper_video_source_host.h ('k') | content/renderer/pepper/pepper_websocket_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698