OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CC_BLINK_WEB_LAYER_IMPL_H_ | 5 #ifndef CC_BLINK_WEB_LAYER_IMPL_H_ |
6 #define CC_BLINK_WEB_LAYER_IMPL_H_ | 6 #define CC_BLINK_WEB_LAYER_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "third_party/WebKit/public/platform/WebFloatPoint.h" | 21 #include "third_party/WebKit/public/platform/WebFloatPoint.h" |
22 #include "third_party/WebKit/public/platform/WebFloatSize.h" | 22 #include "third_party/WebKit/public/platform/WebFloatSize.h" |
23 #include "third_party/WebKit/public/platform/WebLayer.h" | 23 #include "third_party/WebKit/public/platform/WebLayer.h" |
24 #include "third_party/WebKit/public/platform/WebPoint.h" | 24 #include "third_party/WebKit/public/platform/WebPoint.h" |
25 #include "third_party/WebKit/public/platform/WebRect.h" | 25 #include "third_party/WebKit/public/platform/WebRect.h" |
26 #include "third_party/WebKit/public/platform/WebSize.h" | 26 #include "third_party/WebKit/public/platform/WebSize.h" |
27 #include "third_party/WebKit/public/platform/WebString.h" | 27 #include "third_party/WebKit/public/platform/WebString.h" |
28 #include "third_party/WebKit/public/platform/WebVector.h" | 28 #include "third_party/WebKit/public/platform/WebVector.h" |
29 #include "third_party/skia/include/core/SkMatrix44.h" | 29 #include "third_party/skia/include/core/SkMatrix44.h" |
30 | 30 |
31 namespace blink { | |
32 struct WebFloatRect; | |
33 } | |
34 | |
35 namespace base { | |
36 namespace trace_event { | |
37 class ConvertableToTraceFormat; | |
38 } | |
39 } | |
40 | |
41 namespace cc { | 31 namespace cc { |
42 class FilterOperations; | 32 class FilterOperations; |
43 class Layer; | 33 class Layer; |
44 } | 34 } |
45 | 35 |
46 namespace cc_blink { | 36 namespace cc_blink { |
47 | 37 |
48 class CC_BLINK_EXPORT WebLayerImpl : public NON_EXPORTED_BASE(blink::WebLayer) { | 38 class CC_BLINK_EXPORT WebLayerImpl : public NON_EXPORTED_BASE(blink::WebLayer) { |
49 public: | 39 public: |
50 WebLayerImpl(); | 40 WebLayerImpl(); |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 | 137 |
148 bool contents_opaque_is_fixed_; | 138 bool contents_opaque_is_fixed_; |
149 | 139 |
150 private: | 140 private: |
151 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); | 141 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); |
152 }; | 142 }; |
153 | 143 |
154 } // namespace cc_blink | 144 } // namespace cc_blink |
155 | 145 |
156 #endif // CC_BLINK_WEB_LAYER_IMPL_H_ | 146 #endif // CC_BLINK_WEB_LAYER_IMPL_H_ |
OLD | NEW |