| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_PUBLIC_TEST_LAYOUTTEST_SUPPORT_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_LAYOUTTEST_SUPPORT_H_ |
| 6 #define CONTENT_PUBLIC_TEST_LAYOUTTEST_SUPPORT_H_ | 6 #define CONTENT_PUBLIC_TEST_LAYOUTTEST_SUPPORT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "cc/layers/texture_layer.h" | 12 #include "cc/layers/texture_layer.h" |
| 13 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" | 13 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" |
| 14 | 14 |
| 15 class GURL; | 15 class GURL; |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 class WebBatteryStatus; | 18 class WebBatteryStatus; |
| 19 class WebDeviceMotionData; | 19 class WebDeviceMotionData; |
| 20 class WebDeviceOrientationData; | 20 class WebDeviceOrientationData; |
| 21 class WebGamepad; | 21 class WebGamepad; |
| 22 class WebGamepads; | 22 class WebGamepads; |
| 23 class WebLayer; | 23 class WebLayer; |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 // Creates cc::TextureLayer for TestPlugin. | 137 // Creates cc::TextureLayer for TestPlugin. |
| 138 scoped_refptr<cc::TextureLayer> CreateTextureLayerForMailbox( | 138 scoped_refptr<cc::TextureLayer> CreateTextureLayerForMailbox( |
| 139 cc::TextureLayerClient* client); | 139 cc::TextureLayerClient* client); |
| 140 | 140 |
| 141 // Instantiates WebLayerImpl for TestPlugin. | 141 // Instantiates WebLayerImpl for TestPlugin. |
| 142 blink::WebLayer* InstantiateWebLayer(scoped_refptr<cc::TextureLayer> layer); | 142 blink::WebLayer* InstantiateWebLayer(scoped_refptr<cc::TextureLayer> layer); |
| 143 | 143 |
| 144 } // namespace content | 144 } // namespace content |
| 145 | 145 |
| 146 #endif // CONTENT_PUBLIC_TEST_LAYOUTTEST_SUPPORT_H_ | 146 #endif // CONTENT_PUBLIC_TEST_LAYOUTTEST_SUPPORT_H_ |
| OLD | NEW |