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

Side by Side Diff: chrome/browser/prefs/pref_service.cc

Issue 5915004: Introduce incognito preference settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 10 years 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/browser/prefs/pref_service.h" 5 #include "chrome/browser/prefs/pref_service.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 9
10 #include "app/l10n_util.h" 10 #include "app/l10n_util.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/file_path.h" 12 #include "base/file_path.h"
13 #include "base/file_util.h" 13 #include "base/file_util.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/message_loop.h" 15 #include "base/message_loop.h"
16 #include "base/metrics/histogram.h" 16 #include "base/metrics/histogram.h"
17 #include "base/stl_util-inl.h" 17 #include "base/stl_util-inl.h"
18 #include "base/string_number_conversions.h" 18 #include "base/string_number_conversions.h"
19 #include "base/string_util.h" 19 #include "base/string_util.h"
20 #include "base/sys_string_conversions.h" 20 #include "base/sys_string_conversions.h"
21 #include "base/utf_string_conversions.h" 21 #include "base/utf_string_conversions.h"
22 #include "build/build_config.h" 22 #include "build/build_config.h"
23 #include "chrome/browser/browser_thread.h" 23 #include "chrome/browser/browser_thread.h"
24 #include "chrome/browser/extensions/extension_pref_store.h"
24 #include "chrome/browser/policy/configuration_policy_pref_store.h" 25 #include "chrome/browser/policy/configuration_policy_pref_store.h"
25 #include "chrome/browser/prefs/command_line_pref_store.h" 26 #include "chrome/browser/prefs/command_line_pref_store.h"
26 #include "chrome/browser/prefs/default_pref_store.h" 27 #include "chrome/browser/prefs/default_pref_store.h"
28 #include "chrome/browser/prefs/overlay_persistent_pref_store.h"
27 #include "chrome/browser/prefs/pref_notifier_impl.h" 29 #include "chrome/browser/prefs/pref_notifier_impl.h"
28 #include "chrome/browser/prefs/pref_value_store.h" 30 #include "chrome/browser/prefs/pref_value_store.h"
29 #include "chrome/browser/profiles/profile.h" 31 #include "chrome/browser/profiles/profile.h"
30 #include "chrome/common/json_pref_store.h" 32 #include "chrome/common/json_pref_store.h"
31 #include "chrome/common/notification_service.h" 33 #include "chrome/common/notification_service.h"
32 #include "grit/chromium_strings.h" 34 #include "grit/chromium_strings.h"
33 #include "grit/generated_resources.h" 35 #include "grit/generated_resources.h"
34 36
35 namespace { 37 namespace {
36 38
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 ConfigurationPolicyPrefStore* device_management = 110 ConfigurationPolicyPrefStore* device_management =
109 ConfigurationPolicyPrefStore::CreateDeviceManagementPolicyPrefStore( 111 ConfigurationPolicyPrefStore::CreateDeviceManagementPolicyPrefStore(
110 profile); 112 profile);
111 CommandLinePrefStore* command_line = 113 CommandLinePrefStore* command_line =
112 new CommandLinePrefStore(CommandLine::ForCurrentProcess()); 114 new CommandLinePrefStore(CommandLine::ForCurrentProcess());
113 JsonPrefStore* user = new JsonPrefStore( 115 JsonPrefStore* user = new JsonPrefStore(
114 pref_filename, 116 pref_filename,
115 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE)); 117 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE));
116 ConfigurationPolicyPrefStore* recommended = 118 ConfigurationPolicyPrefStore* recommended =
117 ConfigurationPolicyPrefStore::CreateRecommendedPolicyPrefStore(); 119 ConfigurationPolicyPrefStore::CreateRecommendedPolicyPrefStore();
120 DefaultPrefStore* default_pref_store = new DefaultPrefStore();
118 121
119 return new PrefService(managed, device_management, extension_prefs, 122 return new PrefService(managed, device_management, extension_prefs,
120 command_line, user, recommended, profile); 123 command_line, user, recommended, default_pref_store,
124 profile, true);
125 }
126
127 PrefService* PrefService::CreateIncognitoPrefService(
128 PrefStore* incognito_extension_prefs) {
129 return new PrefService(
130 managed_platform_prefs_,
131 device_management_prefs_,
132 incognito_extension_prefs,
133 command_line_prefs_,
134 new OverlayPersistentPrefStore(user_pref_store_.get()),
135 recommended_prefs_,
136 default_store_,
137 profile_,
138 false
139 );
121 } 140 }
122 141
123 PrefService::PrefService(PrefStore* managed_platform_prefs, 142 PrefService::PrefService(PrefStore* managed_platform_prefs,
124 PrefStore* device_management_prefs, 143 PrefStore* device_management_prefs,
125 PrefStore* extension_prefs, 144 PrefStore* extension_prefs,
126 PrefStore* command_line_prefs, 145 PrefStore* command_line_prefs,
127 PersistentPrefStore* user_prefs, 146 PersistentPrefStore* user_prefs,
128 PrefStore* recommended_prefs, 147 PrefStore* recommended_prefs,
129 Profile* profile) 148 DefaultPrefStore* default_store,
130 : user_pref_store_(user_prefs) { 149 Profile* profile,
150 bool init_from_storage)
151 : managed_platform_prefs_(managed_platform_prefs),
152 device_management_prefs_(device_management_prefs),
153 extension_prefs_(extension_prefs),
154 command_line_prefs_(command_line_prefs),
155 recommended_prefs_(recommended_prefs),
156 user_pref_store_(user_prefs),
157 default_store_(default_store),
158 profile_(profile){
131 pref_notifier_.reset(new PrefNotifierImpl(this)); 159 pref_notifier_.reset(new PrefNotifierImpl(this));
132 default_store_ = new DefaultPrefStore();
133 pref_value_store_ = 160 pref_value_store_ =
134 new PrefValueStore(managed_platform_prefs, 161 new PrefValueStore(managed_platform_prefs_,
135 device_management_prefs, 162 device_management_prefs_,
136 extension_prefs, 163 extension_prefs_,
137 command_line_prefs, 164 command_line_prefs_,
138 user_pref_store_, 165 user_pref_store_,
139 recommended_prefs, 166 recommended_prefs_,
140 default_store_, 167 default_store_,
141 pref_notifier_.get(), 168 pref_notifier_.get(),
142 profile); 169 profile_);
143 InitFromStorage(); 170 if (init_from_storage)
171 InitFromStorage();
144 } 172 }
145 173
146 PrefService::~PrefService() { 174 PrefService::~PrefService() {
147 DCHECK(CalledOnValidThread()); 175 DCHECK(CalledOnValidThread());
148 STLDeleteContainerPointers(prefs_.begin(), prefs_.end()); 176 STLDeleteContainerPointers(prefs_.begin(), prefs_.end());
149 prefs_.clear(); 177 prefs_.clear();
150 } 178 }
151 179
152 void PrefService::InitFromStorage() { 180 void PrefService::InitFromStorage() {
153 const PersistentPrefStore::PrefReadError error = 181 const PersistentPrefStore::PrefReadError error =
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 bool rv = pref->GetValue()->GetAsString(&result); 349 bool rv = pref->GetValue()->GetAsString(&result);
322 DCHECK(rv); 350 DCHECK(rv);
323 #if defined(OS_POSIX) 351 #if defined(OS_POSIX)
324 // We store filepaths as UTF8, so convert it back to the system type. 352 // We store filepaths as UTF8, so convert it back to the system type.
325 result = base::SysWideToNativeMB(UTF8ToWide(result)); 353 result = base::SysWideToNativeMB(UTF8ToWide(result));
326 #endif 354 #endif
327 return FilePath(result); 355 return FilePath(result);
328 } 356 }
329 357
330 bool PrefService::HasPrefPath(const char* path) const { 358 bool PrefService::HasPrefPath(const char* path) const {
331 return pref_value_store_->HasPrefPath(path); 359 const Preference* pref = FindPreference(path);
360 return pref && !pref->IsDefaultValue();
332 } 361 }
333 362
334 const PrefService::Preference* PrefService::FindPreference( 363 const PrefService::Preference* PrefService::FindPreference(
335 const char* pref_name) const { 364 const char* pref_name) const {
336 DCHECK(CalledOnValidThread()); 365 DCHECK(CalledOnValidThread());
337 Preference p(this, pref_name); 366 Preference p(this, pref_name, Value::TYPE_NULL);
338 PreferenceSet::const_iterator it = prefs_.find(&p); 367 PreferenceSet::const_iterator it = prefs_.find(&p);
339 return it == prefs_.end() ? NULL : *it; 368 if (it != prefs_.end())
369 return *it;
370 const Value::ValueType type = default_store_->GetType(pref_name);
371 if (type == Value::TYPE_NULL)
372 return NULL;
373 Preference* new_pref = new Preference(this, pref_name, type);
374 prefs_.insert(new_pref);
375 return new_pref;
340 } 376 }
341 377
342 bool PrefService::ReadOnly() const { 378 bool PrefService::ReadOnly() const {
343 return user_pref_store_->ReadOnly(); 379 return user_pref_store_->ReadOnly();
344 } 380 }
345 381
346 PrefNotifier* PrefService::pref_notifier() const { 382 PrefNotifier* PrefService::pref_notifier() const {
347 return pref_notifier_.get(); 383 return pref_notifier_.get();
348 } 384 }
349 385
350 bool PrefService::IsManagedPreference(const char* pref_name) const { 386 bool PrefService::IsManagedPreference(const char* pref_name) const {
351 const Preference* pref = FindPreference(pref_name); 387 const Preference* pref = FindPreference(pref_name);
352 if (pref && pref->IsManaged()) { 388 return pref && pref->IsManaged();
353 return true;
354 }
355 return false;
356 } 389 }
357 390
358 const DictionaryValue* PrefService::GetDictionary(const char* path) const { 391 const DictionaryValue* PrefService::GetDictionary(const char* path) const {
359 DCHECK(CalledOnValidThread()); 392 DCHECK(CalledOnValidThread());
360 393
361 const Preference* pref = FindPreference(path); 394 const Preference* pref = FindPreference(path);
362 if (!pref) { 395 if (!pref) {
363 NOTREACHED() << "Trying to read an unregistered pref: " << path; 396 NOTREACHED() << "Trying to read an unregistered pref: " << path;
364 return NULL; 397 return NULL;
365 } 398 }
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 434
402 if (FindPreference(path)) { 435 if (FindPreference(path)) {
403 NOTREACHED() << "Tried to register duplicate pref " << path; 436 NOTREACHED() << "Tried to register duplicate pref " << path;
404 return; 437 return;
405 } 438 }
406 439
407 Value::ValueType orig_type = default_value->GetType(); 440 Value::ValueType orig_type = default_value->GetType();
408 DCHECK(orig_type != Value::TYPE_NULL && orig_type != Value::TYPE_BINARY) << 441 DCHECK(orig_type != Value::TYPE_NULL && orig_type != Value::TYPE_BINARY) <<
409 "invalid preference type: " << orig_type; 442 "invalid preference type: " << orig_type;
410 443
411 // We set the default value of dictionaries and lists to be null so it's 444 // Hand off ownership.
412 // easier for callers to check for empty dict/list prefs. The PrefValueStore 445 default_store_->SetDefaultValue(path, scoped_value.release());
413 // accepts ownership of the value (null or default_value).
414 if (Value::TYPE_LIST == orig_type || Value::TYPE_DICTIONARY == orig_type) {
415 default_store_->SetDefaultValue(path, Value::CreateNullValue());
416 } else {
417 // Hand off ownership.
418 default_store_->SetDefaultValue(path, scoped_value.release());
419 }
420 446
421 pref_value_store_->RegisterPreferenceType(path, orig_type); 447 prefs_.insert(new Preference(this, path, orig_type));
422 prefs_.insert(new Preference(this, path));
423 } 448 }
424 449
425 void PrefService::ClearPref(const char* path) { 450 void PrefService::ClearPref(const char* path) {
426 DCHECK(CalledOnValidThread()); 451 DCHECK(CalledOnValidThread());
427 452
428 const Preference* pref = FindPreference(path); 453 const Preference* pref = FindPreference(path);
429 if (!pref) { 454 if (!pref) {
430 NOTREACHED() << "Trying to clear an unregistered pref: " << path; 455 NOTREACHED() << "Trying to clear an unregistered pref: " << path;
431 return; 456 return;
432 } 457 }
433 user_pref_store_->RemoveValue(path); 458 user_pref_store_->RemoveValue(path);
434 } 459 }
435 460
436 void PrefService::Set(const char* path, const Value& value) { 461 void PrefService::Set(const char* path, const Value& value) {
437 DCHECK(CalledOnValidThread()); 462 DCHECK(CalledOnValidThread());
438 463
439 const Preference* pref = FindPreference(path); 464 const Preference* pref = FindPreference(path);
440 if (!pref) { 465 if (!pref) {
441 NOTREACHED() << "Trying to write an unregistered pref: " << path; 466 NOTREACHED() << "Trying to write an unregistered pref: " << path;
442 return; 467 return;
443 } 468 }
444 469
445 // Allow dictionary and list types to be set to null, which removes their 470 if (pref->GetType() != value.GetType()) {
446 // user values.
447 if (value.GetType() == Value::TYPE_NULL &&
448 (pref->GetType() == Value::TYPE_DICTIONARY ||
449 pref->GetType() == Value::TYPE_LIST)) {
450 user_pref_store_->RemoveValue(path);
451 } else if (pref->GetType() != value.GetType()) {
452 NOTREACHED() << "Trying to set pref " << path 471 NOTREACHED() << "Trying to set pref " << path
453 << " of type " << pref->GetType() 472 << " of type " << pref->GetType()
454 << " to value of type " << value.GetType(); 473 << " to value of type " << value.GetType();
455 } else { 474 } else {
456 user_pref_store_->SetValue(path, value.DeepCopy()); 475 user_pref_store_->SetValue(path, value.DeepCopy());
457 } 476 }
458 } 477 }
459 478
460 void PrefService::SetBoolean(const char* path, bool value) { 479 void PrefService::SetBoolean(const char* path, bool value) {
461 SetUserPrefValue(path, Value::CreateBooleanValue(value)); 480 SetUserPrefValue(path, Value::CreateBooleanValue(value));
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 return; 602 return;
584 } 603 }
585 604
586 user_pref_store_->SetValue(path, new_value); 605 user_pref_store_->SetValue(path, new_value);
587 } 606 }
588 607
589 /////////////////////////////////////////////////////////////////////////////// 608 ///////////////////////////////////////////////////////////////////////////////
590 // PrefService::Preference 609 // PrefService::Preference
591 610
592 PrefService::Preference::Preference(const PrefService* service, 611 PrefService::Preference::Preference(const PrefService* service,
593 const char* name) 612 const char* name,
613 Value::ValueType type)
594 : name_(name), 614 : name_(name),
615 type_(type),
595 pref_service_(service) { 616 pref_service_(service) {
596 DCHECK(name); 617 DCHECK(name);
597 DCHECK(service); 618 DCHECK(service);
598 } 619 }
599 620
600 Value::ValueType PrefService::Preference::GetType() const { 621 Value::ValueType PrefService::Preference::GetType() const {
601 return pref_service_->pref_value_store_->GetRegisteredType(name_); 622 return type_;
602 } 623 }
603 624
604 const Value* PrefService::Preference::GetValue() const { 625 const Value* PrefService::Preference::GetValue() const {
605 DCHECK(pref_service_->FindPreference(name_.c_str())) << 626 DCHECK(pref_service_->FindPreference(name_.c_str())) <<
606 "Must register pref before getting its value"; 627 "Must register pref before getting its value";
607 628
608 Value* found_value = NULL; 629 Value* found_value = NULL;
609 if (pref_service_->pref_value_store_->GetValue(name_, &found_value)) 630 if (pref_service_->pref_value_store_->GetValue(name_, type_, &found_value)) {
631 DCHECK(found_value->IsType(type_));
610 return found_value; 632 return found_value;
633 }
611 634
612 // Every registered preference has at least a default value. 635 // Every registered preference has at least a default value.
613 NOTREACHED() << "no valid value found for registered pref " << name_; 636 NOTREACHED() << "no valid value found for registered pref " << name_;
614 return NULL; 637 return NULL;
615 } 638 }
616 639
617 bool PrefService::Preference::IsManaged() const { 640 bool PrefService::Preference::IsManaged() const {
618 PrefValueStore* pref_value_store = pref_service_->pref_value_store_; 641 PrefValueStore* pref_value_store = pref_service_->pref_value_store_;
619 return pref_value_store->PrefValueInManagedPlatformStore(name_.c_str()) || 642 return pref_value_store->PrefValueInManagedPlatformStore(name_.c_str()) ||
620 pref_value_store->PrefValueInDeviceManagementStore(name_.c_str()); 643 pref_value_store->PrefValueInDeviceManagementStore(name_.c_str());
(...skipping 21 matching lines...) Expand all
642 665
643 bool PrefService::Preference::IsDefaultValue() const { 666 bool PrefService::Preference::IsDefaultValue() const {
644 return pref_service_->pref_value_store_-> 667 return pref_service_->pref_value_store_->
645 PrefValueFromDefaultStore(name_.c_str()); 668 PrefValueFromDefaultStore(name_.c_str());
646 } 669 }
647 670
648 bool PrefService::Preference::IsUserModifiable() const { 671 bool PrefService::Preference::IsUserModifiable() const {
649 return pref_service_->pref_value_store_-> 672 return pref_service_->pref_value_store_->
650 PrefValueUserModifiable(name_.c_str()); 673 PrefValueUserModifiable(name_.c_str());
651 } 674 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698