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

Side by Side Diff: content/public/browser/content_browser_client.cc

Issue 10600009: Support partitioning of storage contexts based on render_id. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix comments Created 8 years, 5 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
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 #include "content/public/browser/content_browser_client.h" 5 #include "content/public/browser/content_browser_client.h"
6 6
7 #include "base/file_path.h" 7 #include "base/file_path.h"
8 #include "googleurl/src/gurl.h" 8 #include "googleurl/src/gurl.h"
9 #include "ui/gfx/image/image_skia.h" 9 #include "ui/gfx/image/image_skia.h"
10 10
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 140
141 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() { 141 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() {
142 return NULL; 142 return NULL;
143 } 143 }
144 144
145 net::URLRequestContext* ContentBrowserClient::OverrideRequestContextForURL( 145 net::URLRequestContext* ContentBrowserClient::OverrideRequestContextForURL(
146 const GURL& url, ResourceContext* context) { 146 const GURL& url, ResourceContext* context) {
147 return NULL; 147 return NULL;
148 } 148 }
149 149
150 std::string ContentBrowserClient::GetStoragePartitionForChildProcess(
151 content::BrowserContext* browser_context,
152 int child_process_id) {
153 return std::string();
154 }
155
150 MediaObserver* ContentBrowserClient::GetMediaObserver() { 156 MediaObserver* ContentBrowserClient::GetMediaObserver() {
151 return NULL; 157 return NULL;
152 } 158 }
153 159
154 WebKit::WebNotificationPresenter::Permission 160 WebKit::WebNotificationPresenter::Permission
155 ContentBrowserClient::CheckDesktopNotificationPermission( 161 ContentBrowserClient::CheckDesktopNotificationPermission(
156 const GURL& source_origin, 162 const GURL& source_origin,
157 ResourceContext* context, 163 ResourceContext* context,
158 int render_process_id) { 164 int render_process_id) {
159 return WebKit::WebNotificationPresenter::PermissionAllowed; 165 return WebKit::WebNotificationPresenter::PermissionAllowed;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 #endif 221 #endif
216 222
217 #if defined(USE_NSS) 223 #if defined(USE_NSS)
218 crypto::CryptoModuleBlockingPasswordDelegate* 224 crypto::CryptoModuleBlockingPasswordDelegate*
219 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { 225 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) {
220 return NULL; 226 return NULL;
221 } 227 }
222 #endif 228 #endif
223 229
224 } // namespace content 230 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698