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

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

Issue 8997012: Make incognito windows not inherit HSTS state from the main profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/profiles/profile_impl_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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_IMPL_IO_DATA_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/hash_tables.h" 11 #include "base/hash_tables.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "chrome/browser/profiles/profile_io_data.h" 13 #include "chrome/browser/profiles/profile_io_data.h"
14 14
15 class TransportSecurityPersister;
16
15 namespace chrome_browser_net { 17 namespace chrome_browser_net {
16 class HttpServerPropertiesManager; 18 class HttpServerPropertiesManager;
17 class Predictor; 19 class Predictor;
18 } 20 }
19 21
20 namespace net { 22 namespace net {
21 class HttpServerProperties; 23 class HttpServerProperties;
22 class HttpTransactionFactory; 24 class HttpTransactionFactory;
23 } // namespace net 25 } // namespace net
24 26
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 mutable scoped_ptr<LazyParams> lazy_params_; 141 mutable scoped_ptr<LazyParams> lazy_params_;
140 142
141 mutable scoped_ptr<chrome_browser_net::HttpServerPropertiesManager> 143 mutable scoped_ptr<chrome_browser_net::HttpServerPropertiesManager>
142 http_server_properties_manager_; 144 http_server_properties_manager_;
143 145
144 mutable scoped_refptr<ChromeURLRequestContext> media_request_context_; 146 mutable scoped_refptr<ChromeURLRequestContext> media_request_context_;
145 147
146 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_; 148 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_;
147 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_; 149 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_;
148 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_; 150 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_;
151 mutable scoped_ptr<TransportSecurityPersister> transport_security_persister_;
149 152
150 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; 153 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_;
151 154
152 // Parameters needed for isolated apps. 155 // Parameters needed for isolated apps.
153 FilePath app_path_; 156 FilePath app_path_;
154 mutable bool clear_local_state_on_exit_; 157 mutable bool clear_local_state_on_exit_;
155 158
156 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); 159 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData);
157 }; 160 };
158 161
159 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 162 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/profiles/profile_impl_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698