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_LAYOUT_TEST_CONTROLLER_HOST_H_ | 5 #ifndef CONTENT_SHELL_LAYOUT_TEST_CONTROLLER_HOST_H_ |
6 #define CONTENT_SHELL_LAYOUT_TEST_CONTROLLER_HOST_H_ | 6 #define CONTENT_SHELL_LAYOUT_TEST_CONTROLLER_HOST_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <string> | 9 #include <string> |
11 | 10 |
12 #include "base/cancelable_callback.h" | 11 #include "base/cancelable_callback.h" |
13 #include "content/public/browser/render_view_host_observer.h" | 12 #include "content/public/browser/render_view_host_observer.h" |
14 | 13 |
15 class SkBitmap; | 14 class SkBitmap; |
16 | 15 |
17 namespace content { | 16 namespace content { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 bool wait_until_done_; | 65 bool wait_until_done_; |
67 | 66 |
68 base::CancelableClosure watchdog_; | 67 base::CancelableClosure watchdog_; |
69 | 68 |
70 DISALLOW_COPY_AND_ASSIGN(LayoutTestControllerHost); | 69 DISALLOW_COPY_AND_ASSIGN(LayoutTestControllerHost); |
71 }; | 70 }; |
72 | 71 |
73 } // namespace content | 72 } // namespace content |
74 | 73 |
75 #endif // CONTENT_SHELL_LAYOUT_TEST_CONTROLLER_HOST_H_ | 74 #endif // CONTENT_SHELL_LAYOUT_TEST_CONTROLLER_HOST_H_ |
OLD | NEW |