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

Side by Side Diff: chrome/browser/profiles/profile_impl_io_data.cc

Issue 1414313002: Allow dynamic updating of authentication policies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mcs_probe.cc Created 5 years, 2 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 "chrome/browser/profiles/profile_impl_io_data.h" 5 #include "chrome/browser/profiles/profile_impl_io_data.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #include "content/public/browser/browser_thread.h" 49 #include "content/public/browser/browser_thread.h"
50 #include "content/public/browser/cookie_store_factory.h" 50 #include "content/public/browser/cookie_store_factory.h"
51 #include "content/public/browser/notification_service.h" 51 #include "content/public/browser/notification_service.h"
52 #include "content/public/browser/resource_context.h" 52 #include "content/public/browser/resource_context.h"
53 #include "content/public/browser/storage_partition.h" 53 #include "content/public/browser/storage_partition.h"
54 #include "extensions/browser/extension_protocols.h" 54 #include "extensions/browser/extension_protocols.h"
55 #include "extensions/common/constants.h" 55 #include "extensions/common/constants.h"
56 #include "net/base/cache_type.h" 56 #include "net/base/cache_type.h"
57 #include "net/base/sdch_manager.h" 57 #include "net/base/sdch_manager.h"
58 #include "net/ftp/ftp_network_layer.h" 58 #include "net/ftp/ftp_network_layer.h"
59 #include "net/http/http_auth_handler_factory.h"
Mike Lerman 2015/10/23 16:50:44 You didn't edit the includes of any of the other h
aberent 2015/10/23 17:22:27 Because I had to change the type of IOThread::Glob
59 #include "net/http/http_cache.h" 60 #include "net/http/http_cache.h"
60 #include "net/http/http_network_session.h" 61 #include "net/http/http_network_session.h"
61 #include "net/http/http_server_properties_manager.h" 62 #include "net/http/http_server_properties_manager.h"
62 #include "net/sdch/sdch_owner.h" 63 #include "net/sdch/sdch_owner.h"
63 #include "net/ssl/channel_id_service.h" 64 #include "net/ssl/channel_id_service.h"
64 #include "net/url_request/url_request_intercepting_job_factory.h" 65 #include "net/url_request/url_request_intercepting_job_factory.h"
65 #include "net/url_request/url_request_job_factory_impl.h" 66 #include "net/url_request/url_request_job_factory_impl.h"
66 #include "storage/browser/quota/special_storage_policy.h" 67 #include "storage/browser/quota/special_storage_policy.h"
67 68
68 namespace { 69 namespace {
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 const base::Closure& completion) { 807 const base::Closure& completion) {
807 DCHECK_CURRENTLY_ON(BrowserThread::IO); 808 DCHECK_CURRENTLY_ON(BrowserThread::IO);
808 DCHECK(initialized()); 809 DCHECK(initialized());
809 810
810 DCHECK(transport_security_state()); 811 DCHECK(transport_security_state());
811 // Completes synchronously. 812 // Completes synchronously.
812 transport_security_state()->DeleteAllDynamicDataSince(time); 813 transport_security_state()->DeleteAllDynamicDataSince(time);
813 DCHECK(http_server_properties_manager_); 814 DCHECK(http_server_properties_manager_);
814 http_server_properties_manager_->Clear(completion); 815 http_server_properties_manager_->Clear(completion);
815 } 816 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698