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

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

Issue 9317018: referrer_charset is a lie. It's really the user's default_charset. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 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_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 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 // initialization. 135 // initialization.
136 struct ProfileParams { 136 struct ProfileParams {
137 ProfileParams(); 137 ProfileParams();
138 ~ProfileParams(); 138 ~ProfileParams();
139 139
140 FilePath path; 140 FilePath path;
141 bool is_incognito; 141 bool is_incognito;
142 bool clear_local_state_on_exit; 142 bool clear_local_state_on_exit;
143 std::string accept_language; 143 std::string accept_language;
144 std::string accept_charset; 144 std::string accept_charset;
145 std::string referrer_charset; 145 std::string default_charset;
146 IOThread* io_thread; 146 IOThread* io_thread;
147 scoped_refptr<AudioManager> audio_manager; 147 scoped_refptr<AudioManager> audio_manager;
148 scoped_refptr<HostContentSettingsMap> host_content_settings_map; 148 scoped_refptr<HostContentSettingsMap> host_content_settings_map;
149 scoped_refptr<CookieSettings> cookie_settings; 149 scoped_refptr<CookieSettings> cookie_settings;
150 scoped_refptr<content::HostZoomMap> host_zoom_map; 150 scoped_refptr<content::HostZoomMap> host_zoom_map;
151 scoped_refptr<net::SSLConfigService> ssl_config_service; 151 scoped_refptr<net::SSLConfigService> ssl_config_service;
152 scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate; 152 scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate;
153 scoped_refptr<webkit_database::DatabaseTracker> database_tracker; 153 scoped_refptr<webkit_database::DatabaseTracker> database_tracker;
154 scoped_refptr<ChromeAppCacheService> appcache_service; 154 scoped_refptr<ChromeAppCacheService> appcache_service;
155 scoped_refptr<ChromeBlobStorageContext> blob_storage_context; 155 scoped_refptr<ChromeBlobStorageContext> blob_storage_context;
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 // One AppRequestContext per isolated app. 305 // One AppRequestContext per isolated app.
306 mutable AppRequestContextMap app_request_context_map_; 306 mutable AppRequestContextMap app_request_context_map_;
307 307
308 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. 308 // TODO(jhawkins): Remove once crbug.com/102004 is fixed.
309 bool initialized_on_UI_thread_; 309 bool initialized_on_UI_thread_;
310 310
311 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); 311 DISALLOW_COPY_AND_ASSIGN(ProfileIOData);
312 }; 312 };
313 313
314 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ 314 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_
OLDNEW
« no previous file with comments | « chrome/browser/net/chrome_url_request_context.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698