1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_
#define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_
#include <map>
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "base/callback_forward.h"
#include "base/files/file_path.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/prefs/pref_member.h"
#include "base/synchronization/lock.h"
#include "chrome/browser/custom_handlers/protocol_handler_registry.h"
#include "chrome/browser/io_thread.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/storage_partition_descriptor.h"
#include "components/content_settings/core/common/content_settings_types.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.h"
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_event_store.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/browser/resource_context.h"
#include "net/cookies/cookie_monster.h"
#include "net/http/http_cache.h"
#include "net/http/http_network_session.h"
#include "net/url_request/url_request_context.h"
#include "net/url_request/url_request_job_factory.h"
class ChromeHttpUserAgentSettings;
class ChromeNetworkDelegate;
class ChromeURLRequestContextGetter;
class CookieSettings;
class DevToolsNetworkController;
class HostContentSettingsMap;
class MediaDeviceIDSalt;
class ProtocolHandlerRegistry;
class SigninNamesOnIOThread;
class SupervisedUserURLFilter;
namespace chrome_browser_net {
class ResourcePrefetchPredictorObserver;
}
namespace extensions {
class InfoMap;
}
namespace net {
class CertVerifier;
class ChannelIDService;
class CookieStore;
class FraudulentCertificateReporter;
class FtpTransactionFactory;
class HttpServerProperties;
class HttpTransactionFactory;
class ProxyConfigService;
class ProxyService;
class SSLConfigService;
class TransportSecurityPersister;
class TransportSecurityState;
class URLRequestJobFactoryImpl;
} // namespace net
namespace policy {
class PolicyCertVerifier;
class PolicyHeaderIOHelper;
class URLBlacklistManager;
} // namespace policy
namespace prerender {
class PrerenderTracker;
}
// Conceptually speaking, the ProfileIOData represents data that lives on the IO
// thread that is owned by a Profile, such as, but not limited to, network
// objects like CookieMonster, HttpTransactionFactory, etc. Profile owns
// ProfileIOData, but will make sure to delete it on the IO thread (except
// possibly in unit tests where there is no IO thread).
class ProfileIOData {
public:
typedef std::vector<scoped_refptr<ChromeURLRequestContextGetter>>
ChromeURLRequestContextGetterVector;
virtual ~ProfileIOData();
static ProfileIOData* FromResourceContext(content::ResourceContext* rc);
// Returns true if |scheme| is handled in Chrome, or by default handlers in
// net::URLRequest.
static bool IsHandledProtocol(const std::string& scheme);
// Returns true if |url| is handled in Chrome, or by default handlers in
// net::URLRequest.
static bool IsHandledURL(const GURL& url);
// Utility to install additional WebUI handlers into the |job_factory|.
// Ownership of the handlers is transfered from |protocol_handlers|
// to the |job_factory|.
static void InstallProtocolHandlers(
net::URLRequestJobFactoryImpl* job_factory,
content::ProtocolHandlerMap* protocol_handlers);
// Called by Profile.
content::ResourceContext* GetResourceContext() const;
// Initializes the ProfileIOData object and primes the RequestContext
// generation. Must be called prior to any of the Get*() methods other than
// GetResouceContext or GetMetricsEnabledStateOnIOThread.
void Init(
content::ProtocolHandlerMap* protocol_handlers,
content::URLRequestInterceptorScopedVector request_interceptors) const;
net::URLRequestContext* GetMainRequestContext() const;
net::URLRequestContext* GetMediaRequestContext() const;
net::URLRequestContext* GetExtensionsRequestContext() const;
net::URLRequestContext* GetIsolatedAppRequestContext(
net::URLRequestContext* main_context,
const StoragePartitionDescriptor& partition_descriptor,
scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory>
protocol_handler_interceptor,
content::ProtocolHandlerMap* protocol_handlers,
content::URLRequestInterceptorScopedVector request_interceptors) const;
net::URLRequestContext* GetIsolatedMediaRequestContext(
net::URLRequestContext* app_context,
const StoragePartitionDescriptor& partition_descriptor) const;
// These are useful when the Chrome layer is called from the content layer
// with a content::ResourceContext, and they want access to Chrome data for
// that profile.
extensions::InfoMap* GetExtensionInfoMap() const;
CookieSettings* GetCookieSettings() const;
HostContentSettingsMap* GetHostContentSettingsMap() const;
IntegerPrefMember* session_startup_pref() const {
return &session_startup_pref_;
}
SigninNamesOnIOThread* signin_names() const {
return signin_names_.get();
}
StringPrefMember* google_services_account_id() const {
return &google_services_user_account_id_;
}
StringPrefMember* google_services_username() const {
return &google_services_username_;
}
StringPrefMember* google_services_username_pattern() const {
return &google_services_username_pattern_;
}
BooleanPrefMember* reverse_autologin_enabled() const {
return &reverse_autologin_enabled_;
}
const std::string& reverse_autologin_pending_email() const {
return reverse_autologin_pending_email_;
}
void set_reverse_autologin_pending_email(const std::string& email) {
reverse_autologin_pending_email_ = email;
}
StringListPrefMember* one_click_signin_rejected_email_list() const {
return &one_click_signin_rejected_email_list_;
}
net::URLRequestContext* extensions_request_context() const {
return extensions_request_context_.get();
}
BooleanPrefMember* safe_browsing_enabled() const {
return &safe_browsing_enabled_;
}
BooleanPrefMember* sync_disabled() const {
return &sync_disabled_;
}
BooleanPrefMember* signin_allowed() const {
return &signin_allowed_;
}
IntegerPrefMember* network_prediction_options() const {
return &network_prediction_options_;
}
content::ResourceContext::SaltCallback GetMediaDeviceIDSalt() const;
DevToolsNetworkController* network_controller() const {
return network_controller_.get();
}
net::TransportSecurityState* transport_security_state() const {
return transport_security_state_.get();
}
#if defined(OS_CHROMEOS)
std::string username_hash() const {
return username_hash_;
}
bool use_system_key_slot() const { return use_system_key_slot_; }
#endif
Profile::ProfileType profile_type() const {
return profile_type_;
}
bool IsOffTheRecord() const;
IntegerPrefMember* incognito_availibility() const {
return &incognito_availibility_pref_;
}
chrome_browser_net::ResourcePrefetchPredictorObserver*
resource_prefetch_predictor_observer() const {
return resource_prefetch_predictor_observer_.get();
}
#if defined(ENABLE_CONFIGURATION_POLICY)
policy::PolicyHeaderIOHelper* policy_header_helper() const {
return policy_header_helper_.get();
}
#endif
#if defined(ENABLE_SUPERVISED_USERS)
const SupervisedUserURLFilter* supervised_user_url_filter() const {
return supervised_user_url_filter_.get();
}
#endif
// Initialize the member needed to track the metrics enabled state. This is
// only to be called on the UI thread.
void InitializeMetricsEnabledStateOnUIThread();
// Returns whether or not metrics reporting is enabled in the browser instance
// on which this profile resides. This is safe for use from the IO thread, and
// should only be called from there.
bool GetMetricsEnabledStateOnIOThread() const;
// Returns whether or not data reduction proxy is enabled in the browser
// instance on which this profile resides.
virtual bool IsDataReductionProxyEnabled() const;
void set_client_cert_store_factory_for_testing(
const base::Callback<scoped_ptr<net::ClientCertStore>()>& factory) {
client_cert_store_factory_ = factory;
}
protected:
// A URLRequestContext for media that owns its HTTP factory, to ensure
// it is deleted.
class MediaRequestContext : public net::URLRequestContext {
public:
MediaRequestContext();
void SetHttpTransactionFactory(
scoped_ptr<net::HttpTransactionFactory> http_factory);
private:
~MediaRequestContext() override;
scoped_ptr<net::HttpTransactionFactory> http_factory_;
};
// A URLRequestContext for apps that owns its cookie store and HTTP factory,
// to ensure they are deleted.
class AppRequestContext : public net::URLRequestContext {
public:
AppRequestContext();
void SetCookieStore(net::CookieStore* cookie_store);
void SetHttpTransactionFactory(
scoped_ptr<net::HttpTransactionFactory> http_factory);
void SetJobFactory(scoped_ptr<net::URLRequestJobFactory> job_factory);
private:
~AppRequestContext() override;
scoped_refptr<net::CookieStore> cookie_store_;
scoped_ptr<net::HttpTransactionFactory> http_factory_;
scoped_ptr<net::URLRequestJobFactory> job_factory_;
};
// Created on the UI thread, read on the IO thread during ProfileIOData lazy
// initialization.
struct ProfileParams {
ProfileParams();
~ProfileParams();
base::FilePath path;
IOThread* io_thread;
scoped_refptr<CookieSettings> cookie_settings;
scoped_refptr<HostContentSettingsMap> host_content_settings_map;
scoped_refptr<net::SSLConfigService> ssl_config_service;
scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate;
#if defined(ENABLE_EXTENSIONS)
scoped_refptr<extensions::InfoMap> extension_info_map;
#endif
scoped_ptr<chrome_browser_net::ResourcePrefetchPredictorObserver>
resource_prefetch_predictor_observer_;
// This pointer exists only as a means of conveying a url job factory
// pointer from the protocol handler registry on the UI thread to the
// the URLRequestContext on the IO thread. The consumer MUST take
// ownership of the object by calling release() on this pointer.
scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory>
protocol_handler_interceptor;
// We need to initialize the ProxyConfigService from the UI thread
// because on linux it relies on initializing things through gconf,
// and needs to be on the main thread.
scoped_ptr<net::ProxyConfigService> proxy_config_service;
#if defined(ENABLE_SUPERVISED_USERS)
scoped_refptr<const SupervisedUserURLFilter> supervised_user_url_filter;
#endif
#if defined(OS_CHROMEOS)
std::string username_hash;
bool use_system_key_slot;
#endif
// The profile this struct was populated from. It's passed as a void* to
// ensure it's not accidently used on the IO thread. Before using it on the
// UI thread, call ProfileManager::IsValidProfile to ensure it's alive.
void* profile;
prerender::PrerenderTracker* prerender_tracker;
};
explicit ProfileIOData(Profile::ProfileType profile_type);
static std::string GetSSLSessionCacheShard();
void InitializeOnUIThread(Profile* profile);
void ApplyProfileParamsToContext(net::URLRequestContext* context) const;
scoped_ptr<net::URLRequestJobFactory> SetUpJobFactoryDefaults(
scoped_ptr<net::URLRequestJobFactoryImpl> job_factory,
content::URLRequestInterceptorScopedVector request_interceptors,
scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory>
protocol_handler_interceptor,
net::NetworkDelegate* network_delegate,
net::FtpTransactionFactory* ftp_transaction_factory) const;
// Called when the profile is destroyed.
void ShutdownOnUIThread(
scoped_ptr<ChromeURLRequestContextGetterVector> context_getters);
// A ChannelIDService object is created by a derived class of
// ProfileIOData, and the derived class calls this method to set the
// channel_id_service_ member and transfers ownership to the base
// class.
void set_channel_id_service(
net::ChannelIDService* channel_id_service) const;
data_reduction_proxy::DataReductionProxyParams* data_reduction_proxy_params()
const {
return data_reduction_proxy_params_.get();
}
void set_data_reduction_proxy_params(
scoped_ptr<data_reduction_proxy::DataReductionProxyParams>
data_reduction_proxy_params) const {
data_reduction_proxy_params_ = data_reduction_proxy_params.Pass();
}
data_reduction_proxy::DataReductionProxyUsageStats*
data_reduction_proxy_usage_stats() const {
return data_reduction_proxy_usage_stats_.get();
}
void set_data_reduction_proxy_statistics_prefs(
base::WeakPtr<data_reduction_proxy::DataReductionProxyStatisticsPrefs>
data_reduction_proxy_statistics_prefs) {
data_reduction_proxy_statistics_prefs_ =
data_reduction_proxy_statistics_prefs;
}
base::WeakPtr<data_reduction_proxy::DataReductionProxyStatisticsPrefs>
data_reduction_proxy_statistics_prefs() const {
return data_reduction_proxy_statistics_prefs_;
}
void set_data_reduction_proxy_usage_stats(
scoped_ptr<data_reduction_proxy::DataReductionProxyUsageStats>
data_reduction_proxy_usage_stats) const {
data_reduction_proxy_usage_stats_ =
data_reduction_proxy_usage_stats.Pass();
}
base::Callback<void(bool)> data_reduction_proxy_unavailable_callback() const {
return data_reduction_proxy_unavailable_callback_;
}
void set_data_reduction_proxy_unavailable_callback(
const base::Callback<void(bool)>& unavailable_callback) const {
data_reduction_proxy_unavailable_callback_ = unavailable_callback;
}
data_reduction_proxy::DataReductionProxyConfigurator*
data_reduction_proxy_configurator() const {
return data_reduction_proxy_configurator_.get();
}
void set_data_reduction_proxy_configurator(
scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator>
data_reduction_proxy_configurator) const {
data_reduction_proxy_configurator_ =
data_reduction_proxy_configurator.Pass();
}
data_reduction_proxy::DataReductionProxyAuthRequestHandler*
data_reduction_proxy_auth_request_handler() const {
return data_reduction_proxy_auth_request_handler_.get();
}
void set_data_reduction_proxy_auth_request_handler(
scoped_ptr<data_reduction_proxy::DataReductionProxyAuthRequestHandler>
data_reduction_proxy_auth_request_handler) const {
data_reduction_proxy_auth_request_handler_ =
data_reduction_proxy_auth_request_handler.Pass();
}
data_reduction_proxy::DataReductionProxyEventStore*
data_reduction_proxy_event_store() const {
return data_reduction_proxy_event_store_.get();
}
void set_data_reduction_proxy_event_store(
scoped_ptr<data_reduction_proxy::DataReductionProxyEventStore>
data_reduction_proxy_event_store) const {
data_reduction_proxy_event_store_ =
data_reduction_proxy_event_store.Pass();
}
net::FraudulentCertificateReporter* fraudulent_certificate_reporter() const {
return fraudulent_certificate_reporter_.get();
}
net::ProxyService* proxy_service() const {
return proxy_service_.get();
}
base::WeakPtr<net::HttpServerProperties> http_server_properties() const;
void set_http_server_properties(
scoped_ptr<net::HttpServerProperties> http_server_properties) const;
net::URLRequestContext* main_request_context() const {
return main_request_context_.get();
}
bool initialized() const {
return initialized_;
}
// Destroys the ResourceContext first, to cancel any URLRequests that are
// using it still, before we destroy the member variables that those
// URLRequests may be accessing.
void DestroyResourceContext();
// Creates network session and main network transaction factory.
scoped_ptr<net::HttpCache> CreateMainHttpFactory(
const ProfileParams* profile_params,
net::HttpCache::BackendFactory* main_backend) const;
// Creates network transaction factory.
scoped_ptr<net::HttpCache> CreateHttpFactory(
net::HttpNetworkSession* shared_session,
net::HttpCache::BackendFactory* backend) const;
void SetCookieSettingsForTesting(CookieSettings* cookie_settings);
void set_signin_names_for_testing(SigninNamesOnIOThread* signin_names);
private:
class ResourceContext : public content::ResourceContext {
public:
explicit ResourceContext(ProfileIOData* io_data);
~ResourceContext() override;
// ResourceContext implementation:
net::HostResolver* GetHostResolver() override;
net::URLRequestContext* GetRequestContext() override;
scoped_ptr<net::ClientCertStore> CreateClientCertStore() override;
void CreateKeygenHandler(
uint32 key_size_in_bits,
const std::string& challenge_string,
const GURL& url,
const base::Callback<void(scoped_ptr<net::KeygenHandler>)>& callback)
override;
SaltCallback GetMediaDeviceIDSalt() override;
private:
friend class ProfileIOData;
ProfileIOData* const io_data_;
net::HostResolver* host_resolver_;
net::URLRequestContext* request_context_;
};
typedef std::map<StoragePartitionDescriptor,
net::URLRequestContext*,
StoragePartitionDescriptorLess>
URLRequestContextMap;
// --------------------------------------------
// Virtual interface for subtypes to implement:
// --------------------------------------------
// Does the actual initialization of the ProfileIOData subtype. Subtypes
// should use the static helper functions above to implement this.
virtual void InitializeInternal(
scoped_ptr<ChromeNetworkDelegate> chrome_network_delegate,
ProfileParams* profile_params,
content::ProtocolHandlerMap* protocol_handlers,
content::URLRequestInterceptorScopedVector
request_interceptors) const = 0;
// Initializes the RequestContext for extensions.
virtual void InitializeExtensionsRequestContext(
ProfileParams* profile_params) const = 0;
// Does an on-demand initialization of a RequestContext for the given
// isolated app.
virtual net::URLRequestContext* InitializeAppRequestContext(
net::URLRequestContext* main_context,
const StoragePartitionDescriptor& details,
scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory>
protocol_handler_interceptor,
content::ProtocolHandlerMap* protocol_handlers,
content::URLRequestInterceptorScopedVector
request_interceptors) const = 0;
// Does an on-demand initialization of a media RequestContext for the given
// isolated app.
virtual net::URLRequestContext* InitializeMediaRequestContext(
net::URLRequestContext* original_context,
const StoragePartitionDescriptor& details) const = 0;
// These functions are used to transfer ownership of the lazily initialized
// context from ProfileIOData to the URLRequestContextGetter.
virtual net::URLRequestContext*
AcquireMediaRequestContext() const = 0;
virtual net::URLRequestContext* AcquireIsolatedAppRequestContext(
net::URLRequestContext* main_context,
const StoragePartitionDescriptor& partition_descriptor,
scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory>
protocol_handler_interceptor,
content::ProtocolHandlerMap* protocol_handlers,
content::URLRequestInterceptorScopedVector
request_interceptors) const = 0;
virtual net::URLRequestContext*
AcquireIsolatedMediaRequestContext(
net::URLRequestContext* app_context,
const StoragePartitionDescriptor& partition_descriptor) const = 0;
// The order *DOES* matter for the majority of these member variables, so
// don't move them around unless you know what you're doing!
// General rules:
// * ResourceContext references the URLRequestContexts, so
// URLRequestContexts must outlive ResourceContext, hence ResourceContext
// should be destroyed first.
// * URLRequestContexts reference a whole bunch of members, so
// URLRequestContext needs to be destroyed before them.
// * Therefore, ResourceContext should be listed last, and then the
// URLRequestContexts, and then the URLRequestContext members.
// * Note that URLRequestContext members have a directed dependency graph
// too, so they must themselves be ordered correctly.
// Tracks whether or not we've been lazily initialized.
mutable bool initialized_;
// Data from the UI thread from the Profile, used to initialize ProfileIOData.
// Deleted after lazy initialization.
mutable scoped_ptr<ProfileParams> profile_params_;
// Provides access to the email addresses of all signed in profiles.
mutable scoped_ptr<SigninNamesOnIOThread> signin_names_;
// Used for testing.
mutable base::Callback<scoped_ptr<net::ClientCertStore>()>
client_cert_store_factory_;
mutable StringPrefMember google_services_user_account_id_;
mutable StringPrefMember google_services_username_;
mutable StringPrefMember google_services_username_pattern_;
mutable BooleanPrefMember reverse_autologin_enabled_;
// During the reverse autologin request chain processing, this member saves
// the email of the google account that is being signed into.
std::string reverse_autologin_pending_email_;
mutable StringListPrefMember one_click_signin_rejected_email_list_;
mutable scoped_refptr<MediaDeviceIDSalt> media_device_id_salt_;
// Member variables which are pointed to by the various context objects.
mutable BooleanPrefMember enable_referrers_;
mutable BooleanPrefMember enable_do_not_track_;
mutable BooleanPrefMember force_safesearch_;
mutable BooleanPrefMember force_google_safesearch_;
mutable BooleanPrefMember force_youtube_safety_mode_;
mutable BooleanPrefMember safe_browsing_enabled_;
mutable BooleanPrefMember sync_disabled_;
mutable BooleanPrefMember signin_allowed_;
mutable IntegerPrefMember network_prediction_options_;
// TODO(marja): Remove session_startup_pref_ if no longer needed.
mutable IntegerPrefMember session_startup_pref_;
mutable BooleanPrefMember quick_check_enabled_;
mutable IntegerPrefMember incognito_availibility_pref_;
// The state of metrics reporting in the browser that this profile runs on.
// Unfortunately, since ChromeOS has a separate representation of this state,
// we need to make one available based on the platform.
#if defined(OS_CHROMEOS)
bool enable_metrics_;
#else
BooleanPrefMember enable_metrics_;
#endif
#if defined(ENABLE_CONFIGURATION_POLICY)
// Pointed to by NetworkDelegate.
mutable scoped_ptr<policy::URLBlacklistManager> url_blacklist_manager_;
mutable scoped_ptr<policy::PolicyHeaderIOHelper> policy_header_helper_;
#endif
// Pointed to by URLRequestContext.
#if defined(ENABLE_EXTENSIONS)
mutable scoped_refptr<extensions::InfoMap> extension_info_map_;
#endif
mutable scoped_ptr<net::ChannelIDService> channel_id_service_;
// data_reduction_proxy_* classes must be declared before |network_delegate_|.
// The data_reduction_proxy_* classes are passed in to |network_delegate_|,
// so this ordering ensures that the |network_delegate_| never references
// freed objects.
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyParams>
data_reduction_proxy_params_;
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyUsageStats>
data_reduction_proxy_usage_stats_;
mutable base::WeakPtr<data_reduction_proxy::DataReductionProxyStatisticsPrefs>
data_reduction_proxy_statistics_prefs_;
mutable base::Callback<void(bool)> data_reduction_proxy_unavailable_callback_;
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator>
data_reduction_proxy_configurator_;
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyAuthRequestHandler>
data_reduction_proxy_auth_request_handler_;
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyEventStore>
data_reduction_proxy_event_store_;
mutable scoped_ptr<net::FraudulentCertificateReporter>
fraudulent_certificate_reporter_;
mutable scoped_ptr<net::ProxyService> proxy_service_;
mutable scoped_ptr<net::TransportSecurityState> transport_security_state_;
mutable scoped_ptr<net::HttpServerProperties>
http_server_properties_;
#if defined(OS_CHROMEOS)
// Set to |cert_verifier_| if it references a PolicyCertVerifier. In that
// case, the verifier is owned by |cert_verifier_|. Otherwise, set to NULL.
mutable policy::PolicyCertVerifier* policy_cert_verifier_;
mutable scoped_ptr<net::CertVerifier> cert_verifier_;
mutable std::string username_hash_;
mutable bool use_system_key_slot_;
#endif
mutable scoped_ptr<net::TransportSecurityPersister>
transport_security_persister_;
// These are only valid in between LazyInitialize() and their accessor being
// called.
mutable scoped_ptr<net::URLRequestContext> main_request_context_;
mutable scoped_ptr<net::URLRequestContext> extensions_request_context_;
// One URLRequestContext per isolated app for main and media requests.
mutable URLRequestContextMap app_request_context_map_;
mutable URLRequestContextMap isolated_media_request_context_map_;
mutable scoped_ptr<ResourceContext> resource_context_;
mutable scoped_refptr<CookieSettings> cookie_settings_;
mutable scoped_refptr<HostContentSettingsMap> host_content_settings_map_;
mutable scoped_ptr<chrome_browser_net::ResourcePrefetchPredictorObserver>
resource_prefetch_predictor_observer_;
mutable scoped_ptr<ChromeHttpUserAgentSettings>
chrome_http_user_agent_settings_;
#if defined(ENABLE_SUPERVISED_USERS)
mutable scoped_refptr<const SupervisedUserURLFilter>
supervised_user_url_filter_;
#endif
mutable scoped_ptr<DevToolsNetworkController> network_controller_;
// TODO(jhawkins): Remove once crbug.com/102004 is fixed.
bool initialized_on_UI_thread_;
const Profile::ProfileType profile_type_;
DISALLOW_COPY_AND_ASSIGN(ProfileIOData);
};
#endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_
|