| 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_TESTING_PROFILE_H_ | 5 #ifndef CHROME_TEST_BASE_TESTING_PROFILE_H_ |
| 6 #define CHROME_TEST_BASE_TESTING_PROFILE_H_ | 6 #define CHROME_TEST_BASE_TESTING_PROFILE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 class PolicyService; | 34 class PolicyService; |
| 35 class ProfilePolicyConnector; | 35 class ProfilePolicyConnector; |
| 36 class SchemaRegistryService; | 36 class SchemaRegistryService; |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace quota { | 39 namespace quota { |
| 40 class SpecialStoragePolicy; | 40 class SpecialStoragePolicy; |
| 41 } | 41 } |
| 42 | 42 |
| 43 class BrowserContextDependencyManager; | 43 class BrowserContextDependencyManager; |
| 44 class CommandLine; | |
| 45 class ExtensionSpecialStoragePolicy; | 44 class ExtensionSpecialStoragePolicy; |
| 46 class HostContentSettingsMap; | 45 class HostContentSettingsMap; |
| 47 class PrefServiceSyncable; | 46 class PrefServiceSyncable; |
| 48 class ProfileSyncService; | 47 class ProfileSyncService; |
| 49 class TemplateURLService; | 48 class TemplateURLService; |
| 50 class TestingPrefServiceSyncable; | 49 class TestingPrefServiceSyncable; |
| 51 | 50 |
| 52 class TestingProfile : public Profile { | 51 class TestingProfile : public Profile { |
| 53 public: | 52 public: |
| 54 // Profile directory name for the test user. This is "Default" on most | 53 // Profile directory name for the test user. This is "Default" on most |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 | 427 |
| 429 // Weak pointer to a delegate for indicating that a profile was created. | 428 // Weak pointer to a delegate for indicating that a profile was created. |
| 430 Delegate* delegate_; | 429 Delegate* delegate_; |
| 431 | 430 |
| 432 std::string profile_name_; | 431 std::string profile_name_; |
| 433 | 432 |
| 434 scoped_ptr<policy::PolicyService> policy_service_; | 433 scoped_ptr<policy::PolicyService> policy_service_; |
| 435 }; | 434 }; |
| 436 | 435 |
| 437 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ | 436 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ |
| OLD | NEW |