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

Unified Diff: base/prefs/writeable_pref_store.h

Issue 1544033003: Switch to standard integer types in base/prefs/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « base/prefs/value_map_pref_store.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/prefs/writeable_pref_store.h
diff --git a/base/prefs/writeable_pref_store.h b/base/prefs/writeable_pref_store.h
index cde3c84d0f11f4140c2fcb59c5bfd159cab32d3e..f7da279ac02ee9f543dae61eb1fcb6b3c0d17fc8 100644
--- a/base/prefs/writeable_pref_store.h
+++ b/base/prefs/writeable_pref_store.h
@@ -5,9 +5,11 @@
#ifndef BASE_PREFS_WRITEABLE_PREF_STORE_H_
#define BASE_PREFS_WRITEABLE_PREF_STORE_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/prefs/pref_store.h"
@@ -20,7 +22,7 @@ class BASE_PREFS_EXPORT WriteablePrefStore : public PrefStore {
public:
// PrefWriteFlags can be used to change the way a pref will be written to
// storage.
- enum PrefWriteFlags : uint32 {
+ enum PrefWriteFlags : uint32_t {
// No flags are specified.
DEFAULT_PREF_WRITE_FLAGS = 0,
@@ -35,10 +37,10 @@ class BASE_PREFS_EXPORT WriteablePrefStore : public PrefStore {
// a bitmask of PrefWriteFlags.
virtual void SetValue(const std::string& key,
scoped_ptr<base::Value> value,
- uint32 flags) = 0;
+ uint32_t flags) = 0;
// Removes the value for |key|.
- virtual void RemoveValue(const std::string& key, uint32 flags) = 0;
+ virtual void RemoveValue(const std::string& key, uint32_t flags) = 0;
// Equivalent to PrefStore::GetValue but returns a mutable value.
virtual bool GetMutableValue(const std::string& key,
@@ -49,7 +51,7 @@ class BASE_PREFS_EXPORT WriteablePrefStore : public PrefStore {
// value. SetValue takes care of notifications itself. Note that
// ReportValueChanged will trigger notifications even if nothing has changed.
// |flags| is a bitmask of PrefWriteFlags.
- virtual void ReportValueChanged(const std::string& key, uint32 flags) = 0;
+ virtual void ReportValueChanged(const std::string& key, uint32_t flags) = 0;
// Same as SetValue, but doesn't generate notifications. This is used by
// PrefService::GetMutableUserPref() in order to put empty entries
@@ -58,7 +60,7 @@ class BASE_PREFS_EXPORT WriteablePrefStore : public PrefStore {
// of PrefWriteFlags.
virtual void SetValueSilently(const std::string& key,
scoped_ptr<base::Value> value,
- uint32 flags) = 0;
+ uint32_t flags) = 0;
protected:
~WriteablePrefStore() override {}
« no previous file with comments | « base/prefs/value_map_pref_store.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698