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_ |