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

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

Issue 298063006: Make SdchManager per-profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Incorporated comments and changed test name. Created 6 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 | 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/containers/hash_tables.h" 10 #include "base/containers/hash_tables.h"
(...skipping 13 matching lines...) Expand all
24 } // namespace content 24 } // namespace content
25 25
26 namespace domain_reliability { 26 namespace domain_reliability {
27 class DomainReliabilityMonitor; 27 class DomainReliabilityMonitor;
28 } // namespace domain_reliability 28 } // namespace domain_reliability
29 29
30 namespace net { 30 namespace net {
31 class FtpTransactionFactory; 31 class FtpTransactionFactory;
32 class HttpServerProperties; 32 class HttpServerProperties;
33 class HttpTransactionFactory; 33 class HttpTransactionFactory;
34 class SDCHManager;
34 } // namespace net 35 } // namespace net
35 36
36 namespace quota { 37 namespace quota {
37 class SpecialStoragePolicy; 38 class SpecialStoragePolicy;
38 } // namespace quota 39 } // namespace quota
39 40
40 class ProfileImplIOData : public ProfileIOData { 41 class ProfileImplIOData : public ProfileIOData {
41 public: 42 public:
42 class Handle { 43 class Handle {
43 public: 44 public:
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; 228 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_;
228 229
229 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; 230 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_;
230 231
231 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_; 232 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_;
232 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_; 233 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_;
233 234
234 mutable scoped_ptr<domain_reliability::DomainReliabilityMonitor> 235 mutable scoped_ptr<domain_reliability::DomainReliabilityMonitor>
235 domain_reliability_monitor_; 236 domain_reliability_monitor_;
236 237
238 mutable scoped_ptr<net::SdchManager> sdch_manager_;
239
237 // Parameters needed for isolated apps. 240 // Parameters needed for isolated apps.
238 base::FilePath profile_path_; 241 base::FilePath profile_path_;
239 int app_cache_max_size_; 242 int app_cache_max_size_;
240 int app_media_cache_max_size_; 243 int app_media_cache_max_size_;
241 244
242 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); 245 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData);
243 }; 246 };
244 247
245 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 248 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_io_data.cc ('k') | chrome/browser/profiles/profile_impl_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698