| 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 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 // Changes the window rect of the given render view. | 86 // Changes the window rect of the given render view. |
| 87 void ForceResizeRenderView(RenderView* render_view, | 87 void ForceResizeRenderView(RenderView* render_view, |
| 88 const blink::WebSize& new_size); | 88 const blink::WebSize& new_size); |
| 89 | 89 |
| 90 // Set the device scale factor and force the compositor to resize. | 90 // Set the device scale factor and force the compositor to resize. |
| 91 void SetDeviceScaleFactor(RenderView* render_view, float factor); | 91 void SetDeviceScaleFactor(RenderView* render_view, float factor); |
| 92 | 92 |
| 93 // Set the device color profile associated with the profile |name|. | 93 // Set the device color profile associated with the profile |name|. |
| 94 void SetDeviceColorProfile(RenderView* render_view, const std::string& name); | 94 void SetDeviceColorProfile(RenderView* render_view, const std::string& name); |
| 95 | 95 |
| 96 // Change the bluetooth test data while running a layout test. |
| 97 void SetBluetoothMockDataSetForTesting(const std::string& name); |
| 98 |
| 96 // Enables or disables synchronous resize mode. When enabled, all window-sizing | 99 // Enables or disables synchronous resize mode. When enabled, all window-sizing |
| 97 // machinery is short-circuited inside the renderer. This mode is necessary for | 100 // machinery is short-circuited inside the renderer. This mode is necessary for |
| 98 // some tests that were written before browsers had multi-process architecture | 101 // some tests that were written before browsers had multi-process architecture |
| 99 // and rely on window resizes to happen synchronously. | 102 // and rely on window resizes to happen synchronously. |
| 100 // See http://crbug.com/309760 for details. | 103 // See http://crbug.com/309760 for details. |
| 101 void UseSynchronousResizeMode(RenderView* render_view, bool enable); | 104 void UseSynchronousResizeMode(RenderView* render_view, bool enable); |
| 102 | 105 |
| 103 // Control auto resize mode. | 106 // Control auto resize mode. |
| 104 void EnableAutoResizeMode(RenderView* render_view, | 107 void EnableAutoResizeMode(RenderView* render_view, |
| 105 const blink::WebSize& min_size, | 108 const blink::WebSize& min_size, |
| 106 const blink::WebSize& max_size); | 109 const blink::WebSize& max_size); |
| 107 void DisableAutoResizeMode(RenderView* render_view, | 110 void DisableAutoResizeMode(RenderView* render_view, |
| 108 const blink::WebSize& new_size); | 111 const blink::WebSize& new_size); |
| 109 | 112 |
| 110 // Provides a text dump of the contents of the given page state. | 113 // Provides a text dump of the contents of the given page state. |
| 111 std::string DumpBackForwardList(std::vector<PageState>& page_state, | 114 std::string DumpBackForwardList(std::vector<PageState>& page_state, |
| 112 size_t current_index); | 115 size_t current_index); |
| 113 | 116 |
| 114 // Instantiates WebLayerImpl for TestPlugin. | 117 // Instantiates WebLayerImpl for TestPlugin. |
| 115 blink::WebLayer* InstantiateWebLayer(scoped_refptr<cc::TextureLayer> layer); | 118 blink::WebLayer* InstantiateWebLayer(scoped_refptr<cc::TextureLayer> layer); |
| 116 | 119 |
| 117 } // namespace content | 120 } // namespace content |
| 118 | 121 |
| 119 #endif // CONTENT_PUBLIC_TEST_LAYOUTTEST_SUPPORT_H_ | 122 #endif // CONTENT_PUBLIC_TEST_LAYOUTTEST_SUPPORT_H_ |
| OLD | NEW |