OLD | NEW |
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 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
497 mutable base::Callback<scoped_ptr<net::ClientCertStore>()> | 497 mutable base::Callback<scoped_ptr<net::ClientCertStore>()> |
498 client_cert_store_factory_; | 498 client_cert_store_factory_; |
499 | 499 |
500 mutable StringPrefMember google_services_user_account_id_; | 500 mutable StringPrefMember google_services_user_account_id_; |
501 | 501 |
502 mutable scoped_refptr<MediaDeviceIDSalt> media_device_id_salt_; | 502 mutable scoped_refptr<MediaDeviceIDSalt> media_device_id_salt_; |
503 | 503 |
504 // Member variables which are pointed to by the various context objects. | 504 // Member variables which are pointed to by the various context objects. |
505 mutable BooleanPrefMember enable_referrers_; | 505 mutable BooleanPrefMember enable_referrers_; |
506 mutable BooleanPrefMember enable_do_not_track_; | 506 mutable BooleanPrefMember enable_do_not_track_; |
507 mutable BooleanPrefMember force_safesearch_; | |
508 mutable BooleanPrefMember force_google_safesearch_; | 507 mutable BooleanPrefMember force_google_safesearch_; |
509 mutable BooleanPrefMember force_youtube_safety_mode_; | 508 mutable BooleanPrefMember force_youtube_safety_mode_; |
510 mutable BooleanPrefMember safe_browsing_enabled_; | 509 mutable BooleanPrefMember safe_browsing_enabled_; |
511 mutable BooleanPrefMember sync_disabled_; | 510 mutable BooleanPrefMember sync_disabled_; |
512 mutable BooleanPrefMember signin_allowed_; | 511 mutable BooleanPrefMember signin_allowed_; |
513 mutable IntegerPrefMember network_prediction_options_; | 512 mutable IntegerPrefMember network_prediction_options_; |
514 // TODO(marja): Remove session_startup_pref_ if no longer needed. | 513 // TODO(marja): Remove session_startup_pref_ if no longer needed. |
515 mutable IntegerPrefMember session_startup_pref_; | 514 mutable IntegerPrefMember session_startup_pref_; |
516 mutable BooleanPrefMember quick_check_enabled_; | 515 mutable BooleanPrefMember quick_check_enabled_; |
517 mutable IntegerPrefMember incognito_availibility_pref_; | 516 mutable IntegerPrefMember incognito_availibility_pref_; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
587 | 586 |
588 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. | 587 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. |
589 bool initialized_on_UI_thread_; | 588 bool initialized_on_UI_thread_; |
590 | 589 |
591 const Profile::ProfileType profile_type_; | 590 const Profile::ProfileType profile_type_; |
592 | 591 |
593 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 592 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
594 }; | 593 }; |
595 | 594 |
596 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 595 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
OLD | NEW |