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

Unified Diff: webkit/compositor_bindings/web_nine_patch_layer_impl.h

Issue 12496013: Move compositor bindings implementations out of WebKit::, fix style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: webkit/compositor_bindings/web_nine_patch_layer_impl.h
diff --git a/webkit/compositor_bindings/web_nine_patch_layer_impl.h b/webkit/compositor_bindings/web_nine_patch_layer_impl.h
index 8d6cbfe28cda2bfe1844ad424512684f625c9b1c..2220951f1dbc99f0eedda830fbfba52376c85c3e 100644
--- a/webkit/compositor_bindings/web_nine_patch_layer_impl.h
+++ b/webkit/compositor_bindings/web_nine_patch_layer_impl.h
@@ -2,14 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WebNinePatchLayerImpl_h
-#define WebNinePatchLayerImpl_h
+#ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_NINE_PATCH_LAYER_IMPL_H_
+#define WEBKIT_COMPOSITOR_BINDINGS_WEB_NINE_PATCH_LAYER_IMPL_H_
#include "base/memory/scoped_ptr.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "webkit/compositor_bindings/web_layer_impl.h"
-namespace WebKit {
+namespace webkit {
class WebLayerImpl;
@@ -18,14 +18,14 @@ class WebNinePatchLayerImpl {
WebNinePatchLayerImpl();
virtual ~WebNinePatchLayerImpl();
- WebLayer* layer();
+ WebKit::WebLayer* layer();
- void setBitmap(const SkBitmap& bitmap, const WebRect& aperture);
+ void setBitmap(const SkBitmap& bitmap, const WebKit::WebRect& aperture);
enne (OOO) 2013/03/18 06:14:03 SetBitmap
jamesr 2013/03/18 06:36:16 WebNinePatchLayerImpl doesn't appear to be used an
private:
scoped_ptr<WebLayerImpl> layer_;
};
-} // namespace WebKit
+} // namespace webkit
-#endif
+#endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_NINE_PATCH_LAYER_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698