| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_TESTING_PROFILE_H_ | 5 #ifndef CHROME_TEST_TESTING_PROFILE_H_ |
| 6 #define CHROME_TEST_TESTING_PROFILE_H_ | 6 #define CHROME_TEST_TESTING_PROFILE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/memory/scoped_temp_dir.h" | 11 #include "base/scoped_temp_dir.h" |
| 12 #include "base/timer.h" | 12 #include "base/timer.h" |
| 13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 14 | 14 |
| 15 namespace content { | 15 namespace content { |
| 16 class ResourceContextGetter; | 16 class ResourceContextGetter; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace history { | 19 namespace history { |
| 20 class TopSites; | 20 class TopSites; |
| 21 } | 21 } |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 explicit DerivedTestingProfile(Profile* profile); | 406 explicit DerivedTestingProfile(Profile* profile); |
| 407 virtual ~DerivedTestingProfile(); | 407 virtual ~DerivedTestingProfile(); |
| 408 | 408 |
| 409 virtual ProfileId GetRuntimeId(); | 409 virtual ProfileId GetRuntimeId(); |
| 410 | 410 |
| 411 protected: | 411 protected: |
| 412 Profile* original_profile_; | 412 Profile* original_profile_; |
| 413 }; | 413 }; |
| 414 | 414 |
| 415 #endif // CHROME_TEST_TESTING_PROFILE_H_ | 415 #endif // CHROME_TEST_TESTING_PROFILE_H_ |
| OLD | NEW |