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

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

Issue 1002363002: Remove prerender cookie store, part 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prerender-revert-cookie-store-2
Patch Set: also remove hook from ContentBrowserClient Created 5 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
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "content/public/browser/client_certificate_delegate.h" 8 #include "content/public/browser/client_certificate_delegate.h"
9 #include "ui/gfx/image/image_skia.h" 9 #include "ui/gfx/image/image_skia.h"
10 #include "url/gurl.h" 10 #include "url/gurl.h"
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 const GURL& url) { 320 const GURL& url) {
321 return false; 321 return false;
322 } 322 }
323 323
324 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs( 324 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs(
325 BrowserContext* browser_context, 325 BrowserContext* browser_context,
326 const GURL& url) { 326 const GURL& url) {
327 return false; 327 return false;
328 } 328 }
329 329
330 net::CookieStore* ContentBrowserClient::OverrideCookieStoreForRenderProcess(
331 int render_process_id) {
332 return nullptr;
333 }
334
335 bool ContentBrowserClient::CheckMediaAccessPermission( 330 bool ContentBrowserClient::CheckMediaAccessPermission(
336 BrowserContext* browser_context, 331 BrowserContext* browser_context,
337 const GURL& security_origin, 332 const GURL& security_origin,
338 MediaStreamType type) { 333 MediaStreamType type) {
339 return false; 334 return false;
340 } 335 }
341 336
342 PresentationServiceDelegate* 337 PresentationServiceDelegate*
343 ContentBrowserClient::GetPresentationServiceDelegate( 338 ContentBrowserClient::GetPresentationServiceDelegate(
344 WebContents* web_contents) { 339 WebContents* web_contents) {
(...skipping 15 matching lines...) Expand all
360 355
361 #if defined(VIDEO_HOLE) 356 #if defined(VIDEO_HOLE)
362 ExternalVideoSurfaceContainer* 357 ExternalVideoSurfaceContainer*
363 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( 358 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer(
364 WebContents* web_contents) { 359 WebContents* web_contents) {
365 return nullptr; 360 return nullptr;
366 } 361 }
367 #endif 362 #endif
368 363
369 } // namespace content 364 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698