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

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

Issue 2041863002: Remove HttpServerProperies::GetWeakPtr(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 6 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 | « chrome/browser/io_thread.cc ('k') | 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 <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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698