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

Unified Diff: chrome/browser/devtools/devtools_file_system_indexer.cc

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (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
Index: chrome/browser/devtools/devtools_file_system_indexer.cc
diff --git a/chrome/browser/devtools/devtools_file_system_indexer.cc b/chrome/browser/devtools/devtools_file_system_indexer.cc
index 3a7cc14c4466911b66c46082193723980f640e1d..3eb1527f6bd087a384e91475187e4836ac649150 100644
--- a/chrome/browser/devtools/devtools_file_system_indexer.cc
+++ b/chrome/browser/devtools/devtools_file_system_indexer.cc
@@ -4,6 +4,8 @@
#include "chrome/browser/devtools/devtools_file_system_indexer.h"
+#include <stddef.h>
+
#include <iterator>
#include "base/bind.h"
@@ -13,6 +15,7 @@
#include "base/files/file_util_proxy.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/stl_util.h"
#include "base/strings/utf_string_conversions.h"
#include "content/public/browser/browser_thread.h"
@@ -32,9 +35,9 @@ using std::vector;
namespace {
-typedef int32 Trigram;
+typedef int32_t Trigram;
typedef char TrigramChar;
-typedef uint16 FileId;
+typedef uint16_t FileId;
const int kMinTimeoutBetweenWorkedNitification = 200;
// Trigram characters include all ASCII printable characters (32-126) except for

Powered by Google App Engine
This is Rietveld 408576698