OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ | 5 #ifndef WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ |
6 #define WEBKIT_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ | 6 #define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebAnimation.h" | 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebAnimation.h" |
10 #include "third_party/WebKit/Source/Platform/chromium/public/WebColor.h" | 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebColor.h" |
11 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h" | 11 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h" |
12 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h" | 12 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h" |
13 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" | 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" |
14 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" | 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" |
15 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" | 15 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" |
16 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | 16 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" |
17 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" | 17 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" |
18 #include "third_party/skia/include/utils/SkMatrix44.h" | 18 #include "third_party/skia/include/utils/SkMatrix44.h" |
19 #include "webkit/compositor_bindings/webkit_compositor_bindings_export.h" | 19 #include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.
h" |
20 | 20 |
21 namespace cc { class Layer; } | 21 namespace cc { class Layer; } |
22 | 22 |
23 // TODO(senorblanco): Remove this once WebKit changes have landed. | 23 // TODO(senorblanco): Remove this once WebKit changes have landed. |
24 class SkImageFilter; | 24 class SkImageFilter; |
25 | 25 |
26 namespace WebKit { | 26 namespace WebKit { |
27 class WebAnimationDelegate; | 27 class WebAnimationDelegate; |
28 class WebFilterOperations; | 28 class WebFilterOperations; |
29 class WebLayerScrollClient; | 29 class WebLayerScrollClient; |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 | 118 |
119 protected: | 119 protected: |
120 scoped_refptr<cc::Layer> layer_; | 120 scoped_refptr<cc::Layer> layer_; |
121 | 121 |
122 private: | 122 private: |
123 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); | 123 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); |
124 }; | 124 }; |
125 | 125 |
126 } // namespace WebKit | 126 } // namespace WebKit |
127 | 127 |
128 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ | 128 #endif // WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ |
OLD | NEW |