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

Unified Diff: chrome/test/chromedriver/chrome/heap_snapshot_taker.cc

Issue 1548153002: Switch to standard integer types in chrome/. (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/test/chromedriver/chrome/heap_snapshot_taker.cc
diff --git a/chrome/test/chromedriver/chrome/heap_snapshot_taker.cc b/chrome/test/chromedriver/chrome/heap_snapshot_taker.cc
index 6e0caa07f656b5039dbfd96cdaa8e9dad84d27a1..f17e54e9504e08f6830dd457681ab17f0a78f7df 100644
--- a/chrome/test/chromedriver/chrome/heap_snapshot_taker.cc
+++ b/chrome/test/chromedriver/chrome/heap_snapshot_taker.cc
@@ -4,8 +4,11 @@
#include "chrome/test/chromedriver/chrome/heap_snapshot_taker.h"
+#include <stddef.h>
+
#include "base/json/json_reader.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/values.h"
#include "chrome/test/chromedriver/chrome/devtools_client.h"
#include "chrome/test/chromedriver/chrome/status.h"
« no previous file with comments | « chrome/test/chromedriver/chrome/heap_snapshot_taker.h ('k') | chrome/test/chromedriver/chrome/heap_snapshot_taker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698