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

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

Issue 9347031: Merge 120807 - Revert 116685 - Make incognito windows not inherit HSTS state from the main profile. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1025/src/
Patch Set: Created 8 years, 10 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) 2012 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
17 namespace chrome_browser_net { 15 namespace chrome_browser_net {
18 class HttpServerPropertiesManager; 16 class HttpServerPropertiesManager;
19 class Predictor; 17 class Predictor;
20 } 18 }
21 19
22 namespace net { 20 namespace net {
23 class HttpServerProperties; 21 class HttpServerProperties;
24 class HttpTransactionFactory; 22 class HttpTransactionFactory;
25 } // namespace net 23 } // namespace net
26 24
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 mutable scoped_ptr<LazyParams> lazy_params_; 142 mutable scoped_ptr<LazyParams> lazy_params_;
145 143
146 mutable scoped_ptr<chrome_browser_net::HttpServerPropertiesManager> 144 mutable scoped_ptr<chrome_browser_net::HttpServerPropertiesManager>
147 http_server_properties_manager_; 145 http_server_properties_manager_;
148 146
149 mutable scoped_refptr<ChromeURLRequestContext> media_request_context_; 147 mutable scoped_refptr<ChromeURLRequestContext> media_request_context_;
150 148
151 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_; 149 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_;
152 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_; 150 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_;
153 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_; 151 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_;
154 mutable scoped_ptr<TransportSecurityPersister> transport_security_persister_;
155 152
156 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; 153 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_;
157 154
158 // Parameters needed for isolated apps. 155 // Parameters needed for isolated apps.
159 FilePath app_path_; 156 FilePath app_path_;
160 mutable bool clear_local_state_on_exit_; 157 mutable bool clear_local_state_on_exit_;
161 158
162 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); 159 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData);
163 }; 160 };
164 161
165 #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