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

Side by Side Diff: chrome/browser/profiles/profile_io_data.h

Issue 1212613004: Build and send HPKP violation reports (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move report building code to TransportSecurityState; wire up to CheckPublicKeyPins Created 5 years, 5 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 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 class CertVerifier; 61 class CertVerifier;
62 class ChannelIDService; 62 class ChannelIDService;
63 class CookieStore; 63 class CookieStore;
64 class FraudulentCertificateReporter; 64 class FraudulentCertificateReporter;
65 class FtpTransactionFactory; 65 class FtpTransactionFactory;
66 class HttpServerProperties; 66 class HttpServerProperties;
67 class HttpTransactionFactory; 67 class HttpTransactionFactory;
68 class ProxyConfigService; 68 class ProxyConfigService;
69 class ProxyService; 69 class ProxyService;
70 class SSLConfigService; 70 class SSLConfigService;
71 class CertificateReportSender;
davidben 2015/07/24 20:42:55 Nit: Alphabetize.
estark 2015/07/25 00:10:31 Done.
71 class TransportSecurityPersister; 72 class TransportSecurityPersister;
72 class TransportSecurityState; 73 class TransportSecurityState;
73 class URLRequestJobFactoryImpl; 74 class URLRequestJobFactoryImpl;
74 } // namespace net 75 } // namespace net
75 76
76 namespace policy { 77 namespace policy {
77 class PolicyCertVerifier; 78 class PolicyCertVerifier;
78 class PolicyHeaderIOHelper; 79 class PolicyHeaderIOHelper;
79 class URLBlacklistManager; 80 class URLBlacklistManager;
80 } // namespace policy 81 } // namespace policy
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 // Set to |cert_verifier_| if it references a PolicyCertVerifier. In that 551 // Set to |cert_verifier_| if it references a PolicyCertVerifier. In that
551 // case, the verifier is owned by |cert_verifier_|. Otherwise, set to NULL. 552 // case, the verifier is owned by |cert_verifier_|. Otherwise, set to NULL.
552 mutable policy::PolicyCertVerifier* policy_cert_verifier_; 553 mutable policy::PolicyCertVerifier* policy_cert_verifier_;
553 mutable scoped_ptr<net::CertVerifier> cert_verifier_; 554 mutable scoped_ptr<net::CertVerifier> cert_verifier_;
554 mutable std::string username_hash_; 555 mutable std::string username_hash_;
555 mutable bool use_system_key_slot_; 556 mutable bool use_system_key_slot_;
556 #endif 557 #endif
557 558
558 mutable scoped_ptr<net::TransportSecurityPersister> 559 mutable scoped_ptr<net::TransportSecurityPersister>
559 transport_security_persister_; 560 transport_security_persister_;
561 mutable scoped_ptr<net::CertificateReportSender> certificate_report_sender_;
davidben 2015/07/24 20:42:55 This is really obnoxious, but there's a window whe
estark 2015/07/25 00:10:31 Ah, yeah, mmenke and I were talking about this ear
560 562
561 // These are only valid in between LazyInitialize() and their accessor being 563 // These are only valid in between LazyInitialize() and their accessor being
562 // called. 564 // called.
563 mutable scoped_ptr<net::URLRequestContext> main_request_context_; 565 mutable scoped_ptr<net::URLRequestContext> main_request_context_;
564 mutable scoped_ptr<net::URLRequestContext> extensions_request_context_; 566 mutable scoped_ptr<net::URLRequestContext> extensions_request_context_;
565 // One URLRequestContext per isolated app for main and media requests. 567 // One URLRequestContext per isolated app for main and media requests.
566 mutable URLRequestContextMap app_request_context_map_; 568 mutable URLRequestContextMap app_request_context_map_;
567 mutable URLRequestContextMap isolated_media_request_context_map_; 569 mutable URLRequestContextMap isolated_media_request_context_map_;
568 570
569 mutable scoped_ptr<ResourceContext> resource_context_; 571 mutable scoped_ptr<ResourceContext> resource_context_;
(...skipping 23 matching lines...) Expand all
593 595
594 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. 596 // TODO(jhawkins): Remove once crbug.com/102004 is fixed.
595 bool initialized_on_UI_thread_; 597 bool initialized_on_UI_thread_;
596 598
597 const Profile::ProfileType profile_type_; 599 const Profile::ProfileType profile_type_;
598 600
599 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); 601 DISALLOW_COPY_AND_ASSIGN(ProfileIOData);
600 }; 602 };
601 603
602 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ 604 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/profiles/profile_io_data.cc » ('j') | net/http/http_security_headers_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698