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_RENDERER_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ | 5 #ifndef WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ |
6 #define WEBKIT_RENDERER_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/public/platform/WebAnimation.h" |
10 #include "third_party/WebKit/Source/Platform/chromium/public/WebColor.h" | 10 #include "third_party/WebKit/public/platform/WebColor.h" |
11 #include "third_party/WebKit/Source/Platform/chromium/public/WebCompositingReaso
ns.h" | 11 #include "third_party/WebKit/public/platform/WebCompositingReasons.h" |
12 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h" | 12 #include "third_party/WebKit/public/platform/WebFloatPoint.h" |
13 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h" | 13 #include "third_party/WebKit/public/platform/WebLayer.h" |
14 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" | 14 #include "third_party/WebKit/public/platform/WebPoint.h" |
15 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" | 15 #include "third_party/WebKit/public/platform/WebRect.h" |
16 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" | 16 #include "third_party/WebKit/public/platform/WebSize.h" |
17 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | 17 #include "third_party/WebKit/public/platform/WebString.h" |
18 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" | 18 #include "third_party/WebKit/public/platform/WebVector.h" |
19 #include "third_party/skia/include/utils/SkMatrix44.h" | 19 #include "third_party/skia/include/utils/SkMatrix44.h" |
20 #include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.
h" | 20 #include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.
h" |
21 | 21 |
22 namespace cc { class Layer; } | 22 namespace cc { class Layer; } |
23 | 23 |
24 // TODO(senorblanco): Remove this once WebKit changes have landed. | 24 // TODO(senorblanco): Remove this once WebKit changes have landed. |
25 class SkImageFilter; | 25 class SkImageFilter; |
26 | 26 |
27 namespace WebKit { | 27 namespace WebKit { |
28 class WebAnimationDelegate; | 28 class WebAnimationDelegate; |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 protected: | 121 protected: |
122 scoped_refptr<cc::Layer> layer_; | 122 scoped_refptr<cc::Layer> layer_; |
123 | 123 |
124 private: | 124 private: |
125 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); | 125 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); |
126 }; | 126 }; |
127 | 127 |
128 } // namespace WebKit | 128 } // namespace WebKit |
129 | 129 |
130 #endif // WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ | 130 #endif // WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_LAYER_IMPL_H_ |
OLD | NEW |