OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ |
6 #define CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ | 6 #define CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ |
7 | 7 |
8 #include <ostream> | 8 #include <ostream> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 void OnReload(); | 179 void OnReload(); |
180 void OnLoadURLForFrame(const GURL& url, const std::string& frame_name); | 180 void OnLoadURLForFrame(const GURL& url, const std::string& frame_name); |
181 void OnCaptureSessionHistory(); | 181 void OnCaptureSessionHistory(); |
182 void OnCloseRemainingWindows(); | 182 void OnCloseRemainingWindows(); |
183 void OnResetDone(); | 183 void OnResetDone(); |
184 void OnLeakDetectionDone(const content::LeakDetectionResult& result); | 184 void OnLeakDetectionDone(const content::LeakDetectionResult& result); |
185 void OnSetBluetoothManualChooser(bool enable); | 185 void OnSetBluetoothManualChooser(bool enable); |
186 void OnGetBluetoothManualChooserEvents(); | 186 void OnGetBluetoothManualChooserEvents(); |
187 void OnSendBluetoothManualChooserEvent(const std::string& event, | 187 void OnSendBluetoothManualChooserEvent(const std::string& event, |
188 const std::string& argument); | 188 const std::string& argument); |
189 void OnSetDeviceScaleFactor(float scale); | |
190 | 189 |
191 scoped_ptr<BlinkTestResultPrinter> printer_; | 190 scoped_ptr<BlinkTestResultPrinter> printer_; |
192 | 191 |
193 base::FilePath current_working_directory_; | 192 base::FilePath current_working_directory_; |
194 base::FilePath temp_path_; | 193 base::FilePath temp_path_; |
195 | 194 |
196 Shell* main_window_; | 195 Shell* main_window_; |
197 | 196 |
198 // The PID of the render process of the render view host of main_window_. | 197 // The PID of the render process of the render view host of main_window_. |
199 int current_pid_; | 198 int current_pid_; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 // waiting on the UI thread while layout tests are being ran. | 232 // waiting on the UI thread while layout tests are being ran. |
234 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; | 233 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; |
235 #endif | 234 #endif |
236 | 235 |
237 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); | 236 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); |
238 }; | 237 }; |
239 | 238 |
240 } // namespace content | 239 } // namespace content |
241 | 240 |
242 #endif // CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ | 241 #endif // CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ |
OLD | NEW |