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

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

Issue 10704021: Switched from having one URLRequestJobFactory per profile to having one per context. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed header file Created 8 years, 5 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
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 #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"
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 mutable scoped_ptr<LazyParams> lazy_params_; 148 mutable scoped_ptr<LazyParams> lazy_params_;
149 149
150 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_; 150 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_;
151 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_; 151 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_;
152 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_; 152 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_;
153 153
154 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; 154 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_;
155 155
156 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; 156 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_;
157 157
158 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_;
159 mutable scoped_ptr<net::URLRequestJobFactory> media_request_job_factory_;
160 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_;
161
158 // Parameters needed for isolated apps. 162 // Parameters needed for isolated apps.
159 FilePath app_path_; 163 FilePath app_path_;
160 164
161 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); 165 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData);
162 }; 166 };
163 167
164 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 168 #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