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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 | 323 |
324 std::wstring id_; | 324 std::wstring id_; |
325 | 325 |
326 bool incognito_; | 326 bool incognito_; |
327 scoped_ptr<Profile> incognito_profile_; | 327 scoped_ptr<Profile> incognito_profile_; |
328 | 328 |
329 // Did the last session exit cleanly? Default is true. | 329 // Did the last session exit cleanly? Default is true. |
330 bool last_session_exited_cleanly_; | 330 bool last_session_exited_cleanly_; |
331 | 331 |
332 scoped_refptr<HostContentSettingsMap> host_content_settings_map_; | 332 scoped_refptr<HostContentSettingsMap> host_content_settings_map_; |
333 scoped_refptr<content::GeolocationPermissionContext> | |
334 geolocation_permission_context_; | |
335 | 333 |
336 FilePath last_selected_directory_; | 334 FilePath last_selected_directory_; |
337 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. | 335 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. |
338 | 336 |
339 scoped_refptr<ExtensionSpecialStoragePolicy> | 337 scoped_refptr<ExtensionSpecialStoragePolicy> |
340 extension_special_storage_policy_; | 338 extension_special_storage_policy_; |
341 | 339 |
342 // The proxy prefs tracker. | 340 // The proxy prefs tracker. |
343 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 341 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
344 | 342 |
(...skipping 10 matching lines...) Expand all Loading... |
355 // testing. | 353 // testing. |
356 ProfileDependencyManager* profile_dependency_manager_; | 354 ProfileDependencyManager* profile_dependency_manager_; |
357 | 355 |
358 scoped_ptr<content::MockResourceContext> resource_context_; | 356 scoped_ptr<content::MockResourceContext> resource_context_; |
359 | 357 |
360 // Weak pointer to a delegate for indicating that a profile was created. | 358 // Weak pointer to a delegate for indicating that a profile was created. |
361 Delegate* delegate_; | 359 Delegate* delegate_; |
362 }; | 360 }; |
363 | 361 |
364 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ | 362 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ |
OLD | NEW |