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

Unified Diff: chrome/browser/prefs/default_pref_store.h

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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/prefs/default_pref_store.h
diff --git a/chrome/browser/prefs/default_pref_store.h b/chrome/browser/prefs/default_pref_store.h
index 9e2e715eb50af62fe382e7c2b26bd0b380ebbabb..97a72954d5e00b0a2b11c0b7a02d7926f5edc201 100644
--- a/chrome/browser/prefs/default_pref_store.h
+++ b/chrome/browser/prefs/default_pref_store.h
@@ -7,6 +7,7 @@
#pragma once
#include <map>
+#include <string>
#include "base/basictypes.h"
#include "chrome/browser/prefs/value_map_pref_store.h"
@@ -20,9 +21,18 @@ class DefaultPrefStore : public ValueMapPrefStore {
// Stores a new |value| for |key|. Assumes ownership of |value|.
void SetDefaultValue(const std::string& key, Value* value) {
+ CHECK(GetValue(key, NULL) == READ_NO_VALUE);
SetValue(key, value);
}
+ // Returns the registered type for |key| or Value::TYPE_NULL if the |key|
+ // has not been registered.
+ Value::ValueType GetType(const std::string& key) const {
+ Value* value;
+ return GetValue(key, &value) == READ_OK ? value->GetType()
+ : Value::TYPE_NULL;
Mattias Nissler (ping if slow) 2010/12/22 12:09:03 Time for creating a default_pref_store.cc and putt
battre 2010/12/22 18:34:53 Done.
+ }
+
private:
DISALLOW_COPY_AND_ASSIGN(DefaultPrefStore);
};

Powered by Google App Engine
This is Rietveld 408576698