| 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 // 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_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 // content::BrowserContext implementation: | 53 // content::BrowserContext implementation: |
| 54 virtual FilePath GetPath() OVERRIDE; | 54 virtual FilePath GetPath() OVERRIDE; |
| 55 virtual content::DownloadManagerDelegate* | 55 virtual content::DownloadManagerDelegate* |
| 56 GetDownloadManagerDelegate() OVERRIDE; | 56 GetDownloadManagerDelegate() OVERRIDE; |
| 57 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 57 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
| 58 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 58 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
| 59 int renderer_child_id) OVERRIDE; | 59 int renderer_child_id) OVERRIDE; |
| 60 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; | 60 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; |
| 61 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( | 61 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
| 62 int renderer_child_id) OVERRIDE; | 62 int renderer_child_id) OVERRIDE; |
| 63 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 63 virtual content::ResourceContext* GetResourceContext( |
| 64 content::SiteInstance* instance) OVERRIDE; |
| 64 virtual content::GeolocationPermissionContext* | 65 virtual content::GeolocationPermissionContext* |
| 65 GetGeolocationPermissionContext() OVERRIDE; | 66 GetGeolocationPermissionContext() OVERRIDE; |
| 66 virtual content::SpeechRecognitionPreferences* | 67 virtual content::SpeechRecognitionPreferences* |
| 67 GetSpeechRecognitionPreferences() OVERRIDE; | 68 GetSpeechRecognitionPreferences() OVERRIDE; |
| 68 virtual bool DidLastSessionExitCleanly() OVERRIDE; | 69 virtual bool DidLastSessionExitCleanly() OVERRIDE; |
| 69 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 70 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
| 70 | 71 |
| 71 // Profile implementation: | 72 // Profile implementation: |
| 72 virtual std::string GetProfileName() OVERRIDE; | 73 virtual std::string GetProfileName() OVERRIDE; |
| 73 virtual bool IsOffTheRecord() const OVERRIDE; | 74 virtual bool IsOffTheRecord() const OVERRIDE; |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} | 252 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} |
| 252 | 253 |
| 253 Profile::Delegate* delegate_; | 254 Profile::Delegate* delegate_; |
| 254 | 255 |
| 255 chrome_browser_net::Predictor* predictor_; | 256 chrome_browser_net::Predictor* predictor_; |
| 256 | 257 |
| 257 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 258 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 258 }; | 259 }; |
| 259 | 260 |
| 260 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 261 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |