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 CHROME_TEST_BASE_IN_PROCESS_BROWSER_TEST_H_ | 5 #ifndef CHROME_TEST_BASE_IN_PROCESS_BROWSER_TEST_H_ |
6 #define CHROME_TEST_BASE_IN_PROCESS_BROWSER_TEST_H_ | 6 #define CHROME_TEST_BASE_IN_PROCESS_BROWSER_TEST_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "build/build_config.h" |
12 #include "content/public/browser/web_contents.h" | 13 #include "content/public/browser/web_contents.h" |
13 #include "content/public/test/browser_test.h" | 14 #include "content/public/test/browser_test.h" |
14 #include "content/public/test/browser_test_base.h" | 15 #include "content/public/test/browser_test_base.h" |
15 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
16 #include "ui/base/page_transition_types.h" | 17 #include "ui/base/page_transition_types.h" |
17 | 18 |
18 namespace base { | 19 namespace base { |
19 | 20 |
20 class CommandLine; | 21 class CommandLine; |
21 | 22 |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 base::mac::ScopedNSAutoreleasePool* autorelease_pool_; | 251 base::mac::ScopedNSAutoreleasePool* autorelease_pool_; |
251 scoped_ptr<ScopedBundleSwizzlerMac> bundle_swizzler_; | 252 scoped_ptr<ScopedBundleSwizzlerMac> bundle_swizzler_; |
252 #endif // OS_MACOSX | 253 #endif // OS_MACOSX |
253 | 254 |
254 #if defined(OS_WIN) | 255 #if defined(OS_WIN) |
255 scoped_ptr<base::win::ScopedCOMInitializer> com_initializer_; | 256 scoped_ptr<base::win::ScopedCOMInitializer> com_initializer_; |
256 #endif | 257 #endif |
257 }; | 258 }; |
258 | 259 |
259 #endif // CHROME_TEST_BASE_IN_PROCESS_BROWSER_TEST_H_ | 260 #endif // CHROME_TEST_BASE_IN_PROCESS_BROWSER_TEST_H_ |
OLD | NEW |