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/renderer/render_view_observer.h" | 12 #include "content/public/renderer/render_view_observer.h" |
13 #include "content/public/renderer/render_view_observer_tracker.h" | 13 #include "content/public/renderer/render_view_observer_tracker.h" |
14 #include "content/shell/shell_test_configuration.h" | 14 #include "content/shell/common/shell_test_configuration.h" |
15 #include "third_party/WebKit/Tools/DumpRenderTree/chromium/TestRunner/public/Web
Preferences.h" | 15 #include "third_party/WebKit/Tools/DumpRenderTree/chromium/TestRunner/public/Web
Preferences.h" |
16 #include "third_party/WebKit/Tools/DumpRenderTree/chromium/TestRunner/public/Web
TestDelegate.h" | 16 #include "third_party/WebKit/Tools/DumpRenderTree/chromium/TestRunner/public/Web
TestDelegate.h" |
17 #include "v8/include/v8.h" | 17 #include "v8/include/v8.h" |
18 | 18 |
19 class SkCanvas; | 19 class SkCanvas; |
20 | 20 |
21 namespace WebKit { | 21 namespace WebKit { |
22 class WebMediaPlayer; | 22 class WebMediaPlayer; |
23 class WebMediaPlayerClient; | 23 class WebMediaPlayerClient; |
24 struct WebRect; | 24 struct WebRect; |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 bool focus_on_next_commit_; | 137 bool focus_on_next_commit_; |
138 | 138 |
139 scoped_ptr<webkit_glue::TestMediaStreamClient> test_media_stream_client_; | 139 scoped_ptr<webkit_glue::TestMediaStreamClient> test_media_stream_client_; |
140 | 140 |
141 DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner); | 141 DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner); |
142 }; | 142 }; |
143 | 143 |
144 } // namespace content | 144 } // namespace content |
145 | 145 |
146 #endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ | 146 #endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ |
OLD | NEW |