| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 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_RENDERER_LAYOUT_TEST_LAYOUT_TEST_RENDER_THREAD_OBSERVER_H_ | 5 #ifndef CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_RENDER_THREAD_OBSERVER_H_ |
| 6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_RENDER_THREAD_OBSERVER_H_ | 6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_RENDER_THREAD_OBSERVER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "content/public/renderer/render_thread_observer.h" | 13 #include "content/public/renderer/render_thread_observer.h" |
| 14 #include "ipc/ipc_platform_file.h" | 14 #include "ipc/ipc_platform_file.h" |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class DictionaryValue; | 17 class DictionaryValue; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace blink { | |
| 21 class WebFrame; | |
| 22 } | |
| 23 | |
| 24 namespace test_runner { | 20 namespace test_runner { |
| 25 class WebTestInterfaces; | 21 class WebTestInterfaces; |
| 26 } | 22 } |
| 27 | 23 |
| 28 namespace content { | 24 namespace content { |
| 29 | 25 |
| 30 class LayoutTestRenderThreadObserver : public RenderThreadObserver { | 26 class LayoutTestRenderThreadObserver : public RenderThreadObserver { |
| 31 public: | 27 public: |
| 32 static LayoutTestRenderThreadObserver* GetInstance(); | 28 static LayoutTestRenderThreadObserver* GetInstance(); |
| 33 | 29 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 52 std::unique_ptr<test_runner::WebTestInterfaces> test_interfaces_; | 48 std::unique_ptr<test_runner::WebTestInterfaces> test_interfaces_; |
| 53 | 49 |
| 54 base::FilePath webkit_source_dir_; | 50 base::FilePath webkit_source_dir_; |
| 55 | 51 |
| 56 DISALLOW_COPY_AND_ASSIGN(LayoutTestRenderThreadObserver); | 52 DISALLOW_COPY_AND_ASSIGN(LayoutTestRenderThreadObserver); |
| 57 }; | 53 }; |
| 58 | 54 |
| 59 } // namespace content | 55 } // namespace content |
| 60 | 56 |
| 61 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_RENDER_THREAD_OBSERVER
_H_ | 57 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_RENDER_THREAD_OBSERVER
_H_ |
| OLD | NEW |