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

Unified Diff: chrome_frame/utils.h

Issue 17153006: Chrome Frame turndown prompt. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: robert comments Created 7 years, 6 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
Index: chrome_frame/utils.h
diff --git a/chrome_frame/utils.h b/chrome_frame/utils.h
index 744cab8d5244907a8608c7d69452b2e2588bd971..8520c7bb95f1bd5c0b49bcbab2c3180f18721e2c 100644
--- a/chrome_frame/utils.h
+++ b/chrome_frame/utils.h
@@ -246,12 +246,18 @@ bool GetConfigBool(bool default_value, const wchar_t* value_name);
// Gets an integer configuration value from the registry.
int GetConfigInt(int default_value, const wchar_t* value_name);
+// Gets a 64-bit integer configuration value from the registry.
+int64 GetConfigInt64(int64 default_value, const wchar_t* value_name);
+
// Sets an integer configuration value in the registry.
bool SetConfigInt(const wchar_t* value_name, int value);
// Sets a boolean integer configuration value in the registry.
bool SetConfigBool(const wchar_t* value_name, bool value);
+// Sets a 64-bit integer configuration value in the registry.
+bool SetConfigInt64(const wchar_t* value_name, int64 value);
+
// Deletes the configuration value passed in.
bool DeleteConfigValue(const wchar_t* value_name);

Powered by Google App Engine
This is Rietveld 408576698