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

Side by Side Diff: chrome/browser/profiles/profile_impl.h

Issue 10836305: Ensure that isolated apps use the right cookies for media requests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflict. Created 8 years, 4 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) 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 static void RegisterUserPrefs(PrefService* prefs); 51 static void RegisterUserPrefs(PrefService* prefs);
52 52
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* GetRequestContextForMedia() OVERRIDE; 60 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE;
61 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess(
62 int renderer_child_id) OVERRIDE;
61 virtual content::ResourceContext* GetResourceContext() OVERRIDE; 63 virtual content::ResourceContext* GetResourceContext() OVERRIDE;
62 virtual content::GeolocationPermissionContext* 64 virtual content::GeolocationPermissionContext*
63 GetGeolocationPermissionContext() OVERRIDE; 65 GetGeolocationPermissionContext() OVERRIDE;
64 virtual content::SpeechRecognitionPreferences* 66 virtual content::SpeechRecognitionPreferences*
65 GetSpeechRecognitionPreferences() OVERRIDE; 67 GetSpeechRecognitionPreferences() OVERRIDE;
66 virtual bool DidLastSessionExitCleanly() OVERRIDE; 68 virtual bool DidLastSessionExitCleanly() OVERRIDE;
67 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; 69 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE;
68 70
69 // Profile implementation: 71 // Profile implementation:
70 virtual std::string GetProfileName() OVERRIDE; 72 virtual std::string GetProfileName() OVERRIDE;
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} 254 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc}
253 255
254 Profile::Delegate* delegate_; 256 Profile::Delegate* delegate_;
255 257
256 chrome_browser_net::Predictor* predictor_; 258 chrome_browser_net::Predictor* predictor_;
257 259
258 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); 260 DISALLOW_COPY_AND_ASSIGN(ProfileImpl);
259 }; 261 };
260 262
261 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ 263 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_io_data.cc ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698