diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-27 19:23:09 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-27 19:23:09 +0000 |
commit | d34c5f86806cc82c667ac09339c25f5f64fdc1db (patch) | |
tree | e60c9bc8346d9fd9742a649a37d0c604a3c0b672 /chrome/browser/profile.h | |
parent | 01ce7c91bc987c620be3620836f2151ecdb8acff (diff) | |
download | chromium_src-d34c5f86806cc82c667ac09339c25f5f64fdc1db.zip chromium_src-d34c5f86806cc82c667ac09339c25f5f64fdc1db.tar.gz chromium_src-d34c5f86806cc82c667ac09339c25f5f64fdc1db.tar.bz2 |
Add a helper class that keeps per-profile information for FileSystem API
BUG=32277
TEST=FileSystemHostContextTest
Review URL: http://codereview.chromium.org/3028033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57715 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.h')
-rw-r--r-- | chrome/browser/profile.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/profile.h b/chrome/browser/profile.h index 4dc3f5b..d876d8c 100644 --- a/chrome/browser/profile.h +++ b/chrome/browser/profile.h @@ -51,6 +51,7 @@ class ExtensionMessageService; class ExtensionsService; class FaviconService; class FilePath; +class FileSystemHostContext; class FindBarState; class GeolocationContentSettingsMap; class GeolocationPermissionContext; @@ -277,6 +278,9 @@ class Profile { // Returns the PersonalDataManager associated with this profile. virtual PersonalDataManager* GetPersonalDataManager() = 0; + // Returns the HTML5 FileSystemHostContext assigned to this profile. + virtual FileSystemHostContext* GetFileSystemHostContext() = 0; + // Init our themes system. virtual void InitThemes() = 0; |