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

Side by Side Diff: chrome/browser/safe_browsing/safe_browsing_service.cc

Issue 2546533003: Respect QuicAllowed policy for new streams (Closed)
Patch Set: Make explicit that we are only disabling QUIC dynamically Created 3 years, 11 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 | « chrome/browser/safe_browsing/safe_browsing_service.h ('k') | chrome/common/pref_names.h » ('j') | 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 "chrome/browser/safe_browsing/safe_browsing_service.h" 5 #include "chrome/browser/safe_browsing/safe_browsing_service.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 132
133 // Implementation for net::UrlRequestContextGetter. 133 // Implementation for net::UrlRequestContextGetter.
134 net::URLRequestContext* GetURLRequestContext() override; 134 net::URLRequestContext* GetURLRequestContext() override;
135 scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner() 135 scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner()
136 const override; 136 const override;
137 137
138 // Shuts down any pending requests using the getter, and sets |shut_down_| to 138 // Shuts down any pending requests using the getter, and sets |shut_down_| to
139 // true. 139 // true.
140 void ServiceShuttingDown(); 140 void ServiceShuttingDown();
141 141
142 // Disables QUIC. This should not be necessary anymore when
143 // http://crbug.com/678653 is implemented.
144 void DisableQuicOnIOThread();
145
142 protected: 146 protected:
143 ~SafeBrowsingURLRequestContextGetter() override; 147 ~SafeBrowsingURLRequestContextGetter() override;
144 148
145 private: 149 private:
146 bool shut_down_; 150 bool shut_down_;
147 151
148 scoped_refptr<net::URLRequestContextGetter> system_context_getter_; 152 scoped_refptr<net::URLRequestContextGetter> system_context_getter_;
149 153
150 std::unique_ptr<net::CookieStore> safe_browsing_cookie_store_; 154 std::unique_ptr<net::CookieStore> safe_browsing_cookie_store_;
151 155
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 } 236 }
233 237
234 void SafeBrowsingURLRequestContextGetter::ServiceShuttingDown() { 238 void SafeBrowsingURLRequestContextGetter::ServiceShuttingDown() {
235 DCHECK_CURRENTLY_ON(BrowserThread::IO); 239 DCHECK_CURRENTLY_ON(BrowserThread::IO);
236 240
237 shut_down_ = true; 241 shut_down_ = true;
238 URLRequestContextGetter::NotifyContextShuttingDown(); 242 URLRequestContextGetter::NotifyContextShuttingDown();
239 safe_browsing_request_context_.reset(); 243 safe_browsing_request_context_.reset();
240 } 244 }
241 245
246 void SafeBrowsingURLRequestContextGetter::DisableQuicOnIOThread() {
247 DCHECK_CURRENTLY_ON(BrowserThread::IO);
248
249 if (http_network_session_)
250 http_network_session_->DisableQuic();
251 }
252
242 SafeBrowsingURLRequestContextGetter::~SafeBrowsingURLRequestContextGetter() {} 253 SafeBrowsingURLRequestContextGetter::~SafeBrowsingURLRequestContextGetter() {}
243 254
244 // static 255 // static
245 SafeBrowsingServiceFactory* SafeBrowsingService::factory_ = NULL; 256 SafeBrowsingServiceFactory* SafeBrowsingService::factory_ = NULL;
246 257
247 // The default SafeBrowsingServiceFactory. Global, made a singleton so we 258 // The default SafeBrowsingServiceFactory. Global, made a singleton so we
248 // don't leak it. 259 // don't leak it.
249 class SafeBrowsingServiceFactoryImpl : public SafeBrowsingServiceFactory { 260 class SafeBrowsingServiceFactoryImpl : public SafeBrowsingServiceFactory {
250 public: 261 public:
251 SafeBrowsingService* CreateSafeBrowsingService() override { 262 SafeBrowsingService* CreateSafeBrowsingService() override {
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 return false; 397 return false;
387 #endif 398 #endif
388 } 399 }
389 400
390 scoped_refptr<net::URLRequestContextGetter> 401 scoped_refptr<net::URLRequestContextGetter>
391 SafeBrowsingService::url_request_context() { 402 SafeBrowsingService::url_request_context() {
392 DCHECK_CURRENTLY_ON(BrowserThread::UI); 403 DCHECK_CURRENTLY_ON(BrowserThread::UI);
393 return url_request_context_getter_; 404 return url_request_context_getter_;
394 } 405 }
395 406
407 void SafeBrowsingService::DisableQuicOnIOThread() {
408 DCHECK_CURRENTLY_ON(BrowserThread::IO);
409
410 url_request_context_getter_->DisableQuicOnIOThread();
411 }
412
413 // TODO(ntfschr): componentize this once BaseSafeBrowsingUIManager contains a
Nathan Parker 2017/01/09 20:00:21 This looks like a merge confusion.
pmarko 2017/01/09 20:25:23 Good catch, removed.
414 // SafeBrowsingService
396 const scoped_refptr<SafeBrowsingUIManager>& 415 const scoped_refptr<SafeBrowsingUIManager>&
397 SafeBrowsingService::ui_manager() const { 416 SafeBrowsingService::ui_manager() const {
398 return ui_manager_; 417 return ui_manager_;
399 } 418 }
400 419
401 const scoped_refptr<SafeBrowsingDatabaseManager>& 420 const scoped_refptr<SafeBrowsingDatabaseManager>&
402 SafeBrowsingService::database_manager() const { 421 SafeBrowsingService::database_manager() const {
403 return enabled_v4_only_ ? v4_local_database_manager() : database_manager_; 422 return enabled_v4_only_ ? v4_local_database_manager() : database_manager_;
404 } 423 }
405 424
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 ping_manager()->ReportThreatDetails(report); 759 ping_manager()->ReportThreatDetails(report);
741 } 760 }
742 761
743 void SafeBrowsingService::ProcessResourceRequest( 762 void SafeBrowsingService::ProcessResourceRequest(
744 const ResourceRequestInfo& request) { 763 const ResourceRequestInfo& request) {
745 DCHECK_CURRENTLY_ON(BrowserThread::UI); 764 DCHECK_CURRENTLY_ON(BrowserThread::UI);
746 services_delegate_->ProcessResourceRequest(&request); 765 services_delegate_->ProcessResourceRequest(&request);
747 } 766 }
748 767
749 } // namespace safe_browsing 768 } // namespace safe_browsing
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_service.h ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698