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

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

Issue 10918279: Provide mutable members of UrlRequestContext via pure-virtual interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add TODO Created 8 years, 1 month 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
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_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 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/hash_tables.h" 10 #include "base/hash_tables.h"
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_; 176 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_;
177 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_; 177 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_;
178 178
179 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; 179 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_;
180 180
181 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; 181 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_;
182 182
183 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_; 183 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_;
184 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_; 184 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_;
185 185
186 mutable scoped_ptr<ChromeHttpUserAgentSettings>
187 chrome_http_user_agent_settings_;
erikwright (departed) 2012/10/24 13:14:33 no longer used, right?
188
186 // Parameters needed for isolated apps. 189 // Parameters needed for isolated apps.
187 FilePath profile_path_; 190 FilePath profile_path_;
188 int app_cache_max_size_; 191 int app_cache_max_size_;
189 int app_media_cache_max_size_; 192 int app_media_cache_max_size_;
190 193
191 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); 194 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData);
192 }; 195 };
193 196
194 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 197 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698