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_SHELL_WEBKIT_TEST_RUNNER_H_ | 5 #ifndef CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ |
6 #define CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ | 6 #define CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "content/public/common/page_state.h" | 12 #include "content/public/common/page_state.h" |
13 #include "content/public/renderer/render_view_observer.h" | 13 #include "content/public/renderer/render_view_observer.h" |
14 #include "content/public/renderer/render_view_observer_tracker.h" | 14 #include "content/public/renderer/render_view_observer_tracker.h" |
15 #include "content/shell/common/shell_test_configuration.h" | 15 #include "content/shell/common/shell_test_configuration.h" |
16 #include "third_party/WebKit/Tools/DumpRenderTree/chromium/TestRunner/public/Web
Preferences.h" | 16 #include "third_party/WebKit/public/testing/WebPreferences.h" |
17 #include "third_party/WebKit/Tools/DumpRenderTree/chromium/TestRunner/public/Web
TestDelegate.h" | 17 #include "third_party/WebKit/public/testing/WebTestDelegate.h" |
18 #include "v8/include/v8.h" | 18 #include "v8/include/v8.h" |
19 | 19 |
20 class SkCanvas; | 20 class SkCanvas; |
21 | 21 |
22 namespace WebKit { | 22 namespace WebKit { |
23 class WebMediaPlayer; | 23 class WebMediaPlayer; |
24 class WebMediaPlayerClient; | 24 class WebMediaPlayerClient; |
25 struct WebRect; | 25 struct WebRect; |
26 } | 26 } |
27 | 27 |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 bool focus_on_next_commit_; | 135 bool focus_on_next_commit_; |
136 | 136 |
137 scoped_ptr<ShellMediaStreamClient> shell_media_stream_client_; | 137 scoped_ptr<ShellMediaStreamClient> shell_media_stream_client_; |
138 | 138 |
139 DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner); | 139 DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner); |
140 }; | 140 }; |
141 | 141 |
142 } // namespace content | 142 } // namespace content |
143 | 143 |
144 #endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ | 144 #endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ |
OLD | NEW |