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

Unified Diff: base/prefs/pref_registry_simple.h

Issue 254473002: Add support for int64 and uint64 in values.h's API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test compile Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/prefs/pref_registry_simple.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/prefs/pref_registry_simple.h
diff --git a/base/prefs/pref_registry_simple.h b/base/prefs/pref_registry_simple.h
index 50b646711fd5658b0b1847c4bd1a909a9beabf72..973644c5e87497160f1eb27d885dbb6c2ae035cb 100644
--- a/base/prefs/pref_registry_simple.h
+++ b/base/prefs/pref_registry_simple.h
@@ -25,6 +25,8 @@ class BASE_PREFS_EXPORT PrefRegistrySimple : public PrefRegistry {
void RegisterIntegerPref(const char* path, int default_value);
void RegisterDoublePref(const char* path, double default_value);
void RegisterStringPref(const char* path, const std::string& default_value);
+ void RegisterInt64Pref(const char* path, int64 default_value);
+ void RegisterUint64Pref(const char* path, uint64 default_value);
void RegisterFilePathPref(const char* path,
const base::FilePath& default_value);
void RegisterListPref(const char* path);
@@ -32,8 +34,6 @@ class BASE_PREFS_EXPORT PrefRegistrySimple : public PrefRegistry {
void RegisterListPref(const char* path, base::ListValue* default_value);
void RegisterDictionaryPref(const char* path,
base::DictionaryValue* default_value);
- void RegisterInt64Pref(const char* path,
- int64 default_value);
private:
virtual ~PrefRegistrySimple();
« no previous file with comments | « no previous file | base/prefs/pref_registry_simple.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698