Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: chrome/browser/profile.h

Issue 3243005: Revert 57715 - Add a helper class that keeps per-profile information for File... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_PROFILE_H_ 7 #ifndef CHROME_BROWSER_PROFILE_H_
8 #define CHROME_BROWSER_PROFILE_H_ 8 #define CHROME_BROWSER_PROFILE_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 class ChromeURLRequestContextGetter; 44 class ChromeURLRequestContextGetter;
45 class DesktopNotificationService; 45 class DesktopNotificationService;
46 class DownloadManager; 46 class DownloadManager;
47 class Extension; 47 class Extension;
48 class ExtensionDevToolsManager; 48 class ExtensionDevToolsManager;
49 class ExtensionProcessManager; 49 class ExtensionProcessManager;
50 class ExtensionMessageService; 50 class ExtensionMessageService;
51 class ExtensionsService; 51 class ExtensionsService;
52 class FaviconService; 52 class FaviconService;
53 class FilePath; 53 class FilePath;
54 class FileSystemHostContext;
55 class FindBarState; 54 class FindBarState;
56 class GeolocationContentSettingsMap; 55 class GeolocationContentSettingsMap;
57 class GeolocationPermissionContext; 56 class GeolocationPermissionContext;
58 class HistoryService; 57 class HistoryService;
59 class HostContentSettingsMap; 58 class HostContentSettingsMap;
60 class HostZoomMap; 59 class HostZoomMap;
61 class NavigationController; 60 class NavigationController;
62 class NTPResourceCache; 61 class NTPResourceCache;
63 class PasswordStore; 62 class PasswordStore;
64 class PersonalDataManager; 63 class PersonalDataManager;
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 // profile. 270 // profile.
272 virtual TemplateURLFetcher* GetTemplateURLFetcher() = 0; 271 virtual TemplateURLFetcher* GetTemplateURLFetcher() = 0;
273 272
274 // Returns the DownloadManager associated with this profile. 273 // Returns the DownloadManager associated with this profile.
275 virtual DownloadManager* GetDownloadManager() = 0; 274 virtual DownloadManager* GetDownloadManager() = 0;
276 virtual bool HasCreatedDownloadManager() const = 0; 275 virtual bool HasCreatedDownloadManager() const = 0;
277 276
278 // Returns the PersonalDataManager associated with this profile. 277 // Returns the PersonalDataManager associated with this profile.
279 virtual PersonalDataManager* GetPersonalDataManager() = 0; 278 virtual PersonalDataManager* GetPersonalDataManager() = 0;
280 279
281 // Returns the HTML5 FileSystemHostContext assigned to this profile.
282 virtual FileSystemHostContext* GetFileSystemHostContext() = 0;
283
284 // Init our themes system. 280 // Init our themes system.
285 virtual void InitThemes() = 0; 281 virtual void InitThemes() = 0;
286 282
287 // Set the theme to the specified extension. 283 // Set the theme to the specified extension.
288 virtual void SetTheme(Extension* extension) = 0; 284 virtual void SetTheme(Extension* extension) = 0;
289 285
290 // Set the theme to the machine's native theme. 286 // Set the theme to the machine's native theme.
291 virtual void SetNativeTheme() = 0; 287 virtual void SetNativeTheme() = 0;
292 288
293 // Clear the theme and reset it to default. 289 // Clear the theme and reset it to default.
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 bool restored_last_session_; 485 bool restored_last_session_;
490 486
491 // Accessibility events will only be propagated when the pause 487 // Accessibility events will only be propagated when the pause
492 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents 488 // level is zero. PauseAccessibilityEvents and ResumeAccessibilityEvents
493 // increment and decrement the level, respectively, rather than set it to 489 // increment and decrement the level, respectively, rather than set it to
494 // true or false, so that calls can be nested. 490 // true or false, so that calls can be nested.
495 int accessibility_pause_level_; 491 int accessibility_pause_level_;
496 }; 492 };
497 493
498 #endif // CHROME_BROWSER_PROFILE_H_ 494 #endif // CHROME_BROWSER_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/browser/file_system/file_system_host_context_unittest.cc ('k') | chrome/browser/profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698