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_TEST_CONTENT_BROWSER_TEST_H_ | 5 #ifndef CONTENT_TEST_CONTENT_BROWSER_TEST_H_ |
6 #define CONTENT_TEST_CONTENT_BROWSER_TEST_H_ | 6 #define CONTENT_TEST_CONTENT_BROWSER_TEST_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "content/public/test/browser_test.h" | 9 #include "content/public/test/browser_test.h" |
10 #include "content/test/browser_test_base.h" | 10 #include "content/public/test/browser_test_base.h" |
11 | 11 |
12 class GURL; | 12 class GURL; |
13 | 13 |
14 namespace content { | 14 namespace content { |
15 class ContentRendererClient; | 15 class ContentRendererClient; |
16 class Shell; | 16 class Shell; |
17 class ShellMainDelegate; | 17 class ShellMainDelegate; |
18 | 18 |
19 class ContentBrowserTest : public BrowserTestBase { | 19 class ContentBrowserTest : public BrowserTestBase { |
20 protected: | 20 protected: |
(...skipping 22 matching lines...) Expand all Loading... |
43 | 43 |
44 Shell* shell_; | 44 Shell* shell_; |
45 | 45 |
46 // ContentRendererClient when running in single-process mode. | 46 // ContentRendererClient when running in single-process mode. |
47 scoped_ptr<ContentRendererClient> single_process_renderer_client_; | 47 scoped_ptr<ContentRendererClient> single_process_renderer_client_; |
48 }; | 48 }; |
49 | 49 |
50 } // namespace content | 50 } // namespace content |
51 | 51 |
52 #endif // CONTENT_TEST_CONTENT_BROWSER_TEST_H_ | 52 #endif // CONTENT_TEST_CONTENT_BROWSER_TEST_H_ |
OLD | NEW |