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

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

Issue 2924723002: Network service: SafeBrowsing check for frame-resources from browser. (Closed)
Patch Set: . Created 3 years, 6 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 <utility> 7 #include <utility>
8 8
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/guid.h" 10 #include "base/guid.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "build/build_config.h" 12 #include "build/build_config.h"
13 #include "content/public/browser/client_certificate_delegate.h" 13 #include "content/public/browser/client_certificate_delegate.h"
14 #include "content/public/browser/memory_coordinator_delegate.h" 14 #include "content/public/browser/memory_coordinator_delegate.h"
15 #include "content/public/browser/navigation_ui_data.h" 15 #include "content/public/browser/navigation_ui_data.h"
16 #include "content/public/browser/vpn_service_proxy.h" 16 #include "content/public/browser/vpn_service_proxy.h"
17 #include "content/public/common/sandbox_type.h" 17 #include "content/public/common/sandbox_type.h"
18 #include "content/public/common/url_loader_throttle.h"
18 #include "media/audio/audio_manager.h" 19 #include "media/audio/audio_manager.h"
19 #include "media/base/cdm_factory.h" 20 #include "media/base/cdm_factory.h"
20 #include "media/media_features.h" 21 #include "media/media_features.h"
21 #include "net/cert/x509_certificate.h" 22 #include "net/cert/x509_certificate.h"
22 #include "storage/browser/quota/quota_manager.h" 23 #include "storage/browser/quota/quota_manager.h"
23 #include "ui/gfx/image/image_skia.h" 24 #include "ui/gfx/image/image_skia.h"
24 #include "url/gurl.h" 25 #include "url/gurl.h"
25 26
26 namespace content { 27 namespace content {
27 28
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 } 457 }
457 458
458 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() { 459 bool ContentBrowserClient::ShouldRedirectDOMStorageTaskRunner() {
459 return false; 460 return false;
460 } 461 }
461 462
462 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() { 463 bool ContentBrowserClient::RedirectNonUINonIOBrowserThreadsToTaskScheduler() {
463 return false; 464 return false;
464 } 465 }
465 466
467 std::vector<std::unique_ptr<URLLoaderThrottle>>
468 ContentBrowserClient::CreateURLLoaderThrottles(
469 const base::Callback<WebContents*()>& wc_getter) {
470 return std::vector<std::unique_ptr<URLLoaderThrottle>>();
471 }
472
466 } // namespace content 473 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698