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 |
11 #include "base/cancelable_callback.h" | 11 #include "base/cancelable_callback.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/macros.h" |
13 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
14 #include "base/synchronization/lock.h" | 15 #include "base/synchronization/lock.h" |
15 #include "base/threading/non_thread_safe.h" | 16 #include "base/threading/non_thread_safe.h" |
| 17 #include "build/build_config.h" |
16 #include "content/public/browser/bluetooth_chooser.h" | 18 #include "content/public/browser/bluetooth_chooser.h" |
17 #include "content/public/browser/gpu_data_manager_observer.h" | 19 #include "content/public/browser/gpu_data_manager_observer.h" |
18 #include "content/public/browser/notification_observer.h" | 20 #include "content/public/browser/notification_observer.h" |
19 #include "content/public/browser/notification_registrar.h" | 21 #include "content/public/browser/notification_registrar.h" |
20 #include "content/public/browser/web_contents_observer.h" | 22 #include "content/public/browser/web_contents_observer.h" |
21 #include "content/public/common/web_preferences.h" | 23 #include "content/public/common/web_preferences.h" |
22 #include "content/shell/common/leak_detection_result.h" | 24 #include "content/shell/common/leak_detection_result.h" |
23 #include "ui/gfx/geometry/size.h" | 25 #include "ui/gfx/geometry/size.h" |
24 | 26 |
25 #if defined(OS_ANDROID) | 27 #if defined(OS_ANDROID) |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 // waiting on the UI thread while layout tests are being ran. | 234 // waiting on the UI thread while layout tests are being ran. |
233 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; | 235 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; |
234 #endif | 236 #endif |
235 | 237 |
236 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); | 238 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); |
237 }; | 239 }; |
238 | 240 |
239 } // namespace content | 241 } // namespace content |
240 | 242 |
241 #endif // CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ | 243 #endif // CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ |
OLD | NEW |