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

Unified Diff: sync/util/extensions_activity.h

Issue 1545553003: Switch to standard integer types in sync/. (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 | « sync/util/cryptographer.cc ('k') | sync/util/get_session_name.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/util/extensions_activity.h
diff --git a/sync/util/extensions_activity.h b/sync/util/extensions_activity.h
index 8178760b315867af7ba1e9ff6bd4c14bff860af3..a6e4bc7e1214b99d35358adc98c33d7bce99f64e 100644
--- a/sync/util/extensions_activity.h
+++ b/sync/util/extensions_activity.h
@@ -5,10 +5,11 @@
#ifndef SYNC_UTIL_EXTENSIONS_ACTIVITY_H_
#define SYNC_UTIL_EXTENSIONS_ACTIVITY_H_
+#include <stdint.h>
+
#include <map>
#include <string>
-#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/synchronization/lock.h"
#include "sync/base/sync_export.h"
@@ -32,7 +33,7 @@ class SYNC_EXPORT ExtensionsActivity
// How many times the extension successfully invoked a write
// operation through the bookmarks API since the last CommitMessage.
- uint32 bookmark_write_count;
+ uint32_t bookmark_write_count;
};
typedef std::map<std::string, Record> Records;
« no previous file with comments | « sync/util/cryptographer.cc ('k') | sync/util/get_session_name.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698