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

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

Issue 12546016: Remove the Extensions URLRequestContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 #include "content/public/browser/content_browser_client.h" 5 #include "content/public/browser/content_browser_client.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 const string16& name, 165 const string16& name,
166 ResourceContext* context, 166 ResourceContext* context,
167 const std::vector<std::pair<int, int> >& render_views) { 167 const std::vector<std::pair<int, int> >& render_views) {
168 return true; 168 return true;
169 } 169 }
170 170
171 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() { 171 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() {
172 return NULL; 172 return NULL;
173 } 173 }
174 174
175 net::URLRequestContext* ContentBrowserClient::OverrideRequestContextForURL( 175 net::CookieStore* ContentBrowserClient::OverrideCookieStoreForURL(
176 const GURL& url, ResourceContext* context) { 176 const GURL& url, ResourceContext* context) {
177 return NULL; 177 return NULL;
178 } 178 }
179 179
180 std::string ContentBrowserClient::GetStoragePartitionIdForSite( 180 std::string ContentBrowserClient::GetStoragePartitionIdForSite(
181 BrowserContext* browser_context, 181 BrowserContext* browser_context,
182 const GURL& site) { 182 const GURL& site) {
183 return std::string(); 183 return std::string();
184 } 184 }
185 185
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 #endif 283 #endif
284 284
285 #if defined(USE_NSS) 285 #if defined(USE_NSS)
286 crypto::CryptoModuleBlockingPasswordDelegate* 286 crypto::CryptoModuleBlockingPasswordDelegate*
287 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { 287 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) {
288 return NULL; 288 return NULL;
289 } 289 }
290 #endif 290 #endif
291 291
292 } // namespace content 292 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698