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

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

Issue 1213783005: Send HPKP violation reports when a pin check fails (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
« no previous file with comments | « no previous file | chrome/browser/profiles/profile_io_data.cc » ('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 #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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 TransportSecurityPersister; 71 class TransportSecurityPersister;
72 class TransportSecurityReporter;
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
81 82
(...skipping 468 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::TransportSecurityReporter>
562 transport_security_reporter_;
560 563
561 // These are only valid in between LazyInitialize() and their accessor being 564 // These are only valid in between LazyInitialize() and their accessor being
562 // called. 565 // called.
563 mutable scoped_ptr<net::URLRequestContext> main_request_context_; 566 mutable scoped_ptr<net::URLRequestContext> main_request_context_;
564 mutable scoped_ptr<net::URLRequestContext> extensions_request_context_; 567 mutable scoped_ptr<net::URLRequestContext> extensions_request_context_;
565 // One URLRequestContext per isolated app for main and media requests. 568 // One URLRequestContext per isolated app for main and media requests.
566 mutable URLRequestContextMap app_request_context_map_; 569 mutable URLRequestContextMap app_request_context_map_;
567 mutable URLRequestContextMap isolated_media_request_context_map_; 570 mutable URLRequestContextMap isolated_media_request_context_map_;
568 571
569 mutable scoped_ptr<ResourceContext> resource_context_; 572 mutable scoped_ptr<ResourceContext> resource_context_;
(...skipping 23 matching lines...) Expand all
593 596
594 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. 597 // TODO(jhawkins): Remove once crbug.com/102004 is fixed.
595 bool initialized_on_UI_thread_; 598 bool initialized_on_UI_thread_;
596 599
597 const Profile::ProfileType profile_type_; 600 const Profile::ProfileType profile_type_;
598 601
599 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); 602 DISALLOW_COPY_AND_ASSIGN(ProfileIOData);
600 }; 603 };
601 604
602 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ 605 #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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698