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 // This class gathers state related to a single user profile. | 5 // This class gathers state related to a single user profile. |
6 | 6 |
7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_ |
8 #define CHROME_BROWSER_PROFILES_PROFILE_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 class ChromeBlobStorageContext; | 52 class ChromeBlobStorageContext; |
53 class ChromeURLRequestContextGetter; | 53 class ChromeURLRequestContextGetter; |
54 class CloudPrintProxyService; | 54 class CloudPrintProxyService; |
55 class DesktopNotificationService; | 55 class DesktopNotificationService; |
56 class DownloadManager; | 56 class DownloadManager; |
57 class Extension; | 57 class Extension; |
58 class ExtensionDevToolsManager; | 58 class ExtensionDevToolsManager; |
59 class ExtensionEventRouter; | 59 class ExtensionEventRouter; |
60 class ExtensionInfoMap; | 60 class ExtensionInfoMap; |
61 class ExtensionMessageService; | 61 class ExtensionMessageService; |
| 62 class ExtensionPrefValueMap; |
62 class ExtensionProcessManager; | 63 class ExtensionProcessManager; |
63 class ExtensionService; | 64 class ExtensionService; |
64 class FaviconService; | 65 class FaviconService; |
65 class FilePath; | 66 class FilePath; |
66 class FindBarState; | 67 class FindBarState; |
67 class GeolocationContentSettingsMap; | 68 class GeolocationContentSettingsMap; |
68 class GeolocationPermissionContext; | 69 class GeolocationPermissionContext; |
69 class HistoryService; | 70 class HistoryService; |
70 class HostContentSettingsMap; | 71 class HostContentSettingsMap; |
71 class HostZoomMap; | 72 class HostZoomMap; |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 } | 541 } |
541 | 542 |
542 // Checks whether sync is configurable by the user. Returns false if sync is | 543 // Checks whether sync is configurable by the user. Returns false if sync is |
543 // disabled or controlled by configuration management. | 544 // disabled or controlled by configuration management. |
544 bool IsSyncAccessible(); | 545 bool IsSyncAccessible(); |
545 | 546 |
546 // Creates an OffTheRecordProfile which points to this Profile. | 547 // Creates an OffTheRecordProfile which points to this Profile. |
547 Profile* CreateOffTheRecordProfile(); | 548 Profile* CreateOffTheRecordProfile(); |
548 | 549 |
549 protected: | 550 protected: |
| 551 friend class OffTheRecordProfileImpl; |
| 552 |
550 static URLRequestContextGetter* default_request_context_; | 553 static URLRequestContextGetter* default_request_context_; |
551 | 554 |
| 555 virtual ExtensionPrefValueMap* GetExtensionPrefValueMap() = 0; |
| 556 |
552 private: | 557 private: |
553 bool restored_last_session_; | 558 bool restored_last_session_; |
554 | 559 |
555 // Accessibility events will only be propagated when the pause | 560 // Accessibility events will only be propagated when the pause |
556 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents | 561 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents |
557 // increment and decrement the level, respectively, rather than set it to | 562 // increment and decrement the level, respectively, rather than set it to |
558 // true or false, so that calls can be nested. | 563 // true or false, so that calls can be nested. |
559 int accessibility_pause_level_; | 564 int accessibility_pause_level_; |
560 }; | 565 }; |
561 | 566 |
562 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ | 567 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ |
OLD | NEW |