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

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

Issue 10909182: Make FileSystemContext respect StoragePartitions. filesystem:// urls will be properly isolated (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch unittest fix from michael Created 8 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) 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 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 5 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 virtual FilePath GetPath() OVERRIDE; 86 virtual FilePath GetPath() OVERRIDE;
87 virtual bool IsOffTheRecord() const OVERRIDE; 87 virtual bool IsOffTheRecord() const OVERRIDE;
88 virtual content::DownloadManagerDelegate* 88 virtual content::DownloadManagerDelegate*
89 GetDownloadManagerDelegate() OVERRIDE; 89 GetDownloadManagerDelegate() OVERRIDE;
90 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; 90 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE;
91 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( 91 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess(
92 int renderer_child_id) OVERRIDE; 92 int renderer_child_id) OVERRIDE;
93 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; 93 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE;
94 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( 94 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess(
95 int renderer_child_id) OVERRIDE; 95 int renderer_child_id) OVERRIDE;
96 virtual net::URLRequestContextGetter*
97 GetMediaRequestContextForStoragePartition(
98 const std::string& partition_id) OVERRIDE;
96 virtual content::ResourceContext* GetResourceContext() OVERRIDE; 99 virtual content::ResourceContext* GetResourceContext() OVERRIDE;
97 virtual content::GeolocationPermissionContext* 100 virtual content::GeolocationPermissionContext*
98 GetGeolocationPermissionContext() OVERRIDE; 101 GetGeolocationPermissionContext() OVERRIDE;
99 virtual content::SpeechRecognitionPreferences* 102 virtual content::SpeechRecognitionPreferences*
100 GetSpeechRecognitionPreferences() OVERRIDE; 103 GetSpeechRecognitionPreferences() OVERRIDE;
101 virtual bool DidLastSessionExitCleanly() OVERRIDE; 104 virtual bool DidLastSessionExitCleanly() OVERRIDE;
102 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; 105 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE;
103 106
104 // content::NotificationObserver implementation. 107 // content::NotificationObserver implementation.
105 virtual void Observe(int type, 108 virtual void Observe(int type,
(...skipping 24 matching lines...) Expand all
130 Time start_time_; 133 Time start_time_;
131 134
132 FilePath last_selected_directory_; 135 FilePath last_selected_directory_;
133 136
134 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; 137 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
135 138
136 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); 139 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl);
137 }; 140 };
138 141
139 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ 142 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698