OLD | NEW |
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 <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 net::ChannelIDService* channel_id_service) const; | 382 net::ChannelIDService* channel_id_service) const; |
383 | 383 |
384 void set_data_reduction_proxy_io_data( | 384 void set_data_reduction_proxy_io_data( |
385 std::unique_ptr<data_reduction_proxy::DataReductionProxyIOData> | 385 std::unique_ptr<data_reduction_proxy::DataReductionProxyIOData> |
386 data_reduction_proxy_io_data) const; | 386 data_reduction_proxy_io_data) const; |
387 | 387 |
388 net::ProxyService* proxy_service() const { | 388 net::ProxyService* proxy_service() const { |
389 return proxy_service_.get(); | 389 return proxy_service_.get(); |
390 } | 390 } |
391 | 391 |
392 base::WeakPtr<net::HttpServerProperties> http_server_properties() const; | 392 net::HttpServerProperties* http_server_properties() const; |
393 | 393 |
394 void set_http_server_properties( | 394 void set_http_server_properties( |
395 std::unique_ptr<net::HttpServerProperties> http_server_properties) const; | 395 std::unique_ptr<net::HttpServerProperties> http_server_properties) const; |
396 | 396 |
397 net::URLRequestContext* main_request_context() const { | 397 net::URLRequestContext* main_request_context() const { |
398 return main_request_context_.get(); | 398 return main_request_context_.get(); |
399 } | 399 } |
400 | 400 |
401 bool initialized() const { | 401 bool initialized() const { |
402 return initialized_; | 402 return initialized_; |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 mutable std::unique_ptr<certificate_transparency::TreeStateTracker> | 619 mutable std::unique_ptr<certificate_transparency::TreeStateTracker> |
620 ct_tree_tracker_; | 620 ct_tree_tracker_; |
621 mutable base::Closure ct_tree_tracker_unregistration_; | 621 mutable base::Closure ct_tree_tracker_unregistration_; |
622 | 622 |
623 const Profile::ProfileType profile_type_; | 623 const Profile::ProfileType profile_type_; |
624 | 624 |
625 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 625 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
626 }; | 626 }; |
627 | 627 |
628 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 628 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
OLD | NEW |