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

Unified Diff: webkit/compositor_bindings/web_solid_color_layer_impl.h

Issue 12481008: Remove cross-repo OVERRIDE annotations and IWYU-ify comp bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix forward decl in web_float_animation_curve_impl.h Created 7 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
Index: webkit/compositor_bindings/web_solid_color_layer_impl.h
diff --git a/webkit/compositor_bindings/web_solid_color_layer_impl.h b/webkit/compositor_bindings/web_solid_color_layer_impl.h
index 1a9502079b198299495a03b839d538d2a6d3ed14..6d841b4a05e65ad6b3841848f0958a1e50fe940c 100644
--- a/webkit/compositor_bindings/web_solid_color_layer_impl.h
+++ b/webkit/compositor_bindings/web_solid_color_layer_impl.h
@@ -6,6 +6,7 @@
#define WebSolidColorLayerImpl_h
#include "base/memory/scoped_ptr.h"
+#include "third_party/WebKit/Source/Platform/chromium/public/WebColor.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebSolidColorLayer.h"
#include "webkit/compositor_bindings/webkit_compositor_bindings_export.h"
@@ -18,8 +19,8 @@ class WebSolidColorLayerImpl : public WebSolidColorLayer {
virtual ~WebSolidColorLayerImpl();
// WebSolidColorLayer implementation.
- virtual WebLayer* layer() OVERRIDE;
- virtual void setBackgroundColor(WebColor) OVERRIDE;
+ virtual WebLayer* layer();
+ virtual void setBackgroundColor(WebColor);
private:
scoped_ptr<WebLayerImpl> layer_;
« no previous file with comments | « webkit/compositor_bindings/web_scrollbar_layer_impl.h ('k') | webkit/compositor_bindings/web_to_ccinput_handler_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698