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

Unified Diff: chrome/browser/net/sdch_browsertest.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 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
« no previous file with comments | « chrome/browser/net/safe_search_util.cc ('k') | chrome/browser/net/service_providers_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/sdch_browsertest.cc
diff --git a/chrome/browser/net/sdch_browsertest.cc b/chrome/browser/net/sdch_browsertest.cc
index b9c30e55350788c5f7d955533152caef4d771fbe..d28651b96ed230e2180b238272773f0f203df6b4 100644
--- a/chrome/browser/net/sdch_browsertest.cc
+++ b/chrome/browser/net/sdch_browsertest.cc
@@ -5,6 +5,9 @@
// End-to-end SDCH tests. Uses the embedded test server to return SDCH
// results
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/base64.h"
#include "base/bind.h"
#include "base/callback.h"
@@ -16,6 +19,7 @@
#include "base/strings/string_tokenizer.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
+#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/browsing_data/browsing_data_helper.h"
#include "chrome/browser/browsing_data/browsing_data_remover.h"
@@ -487,7 +491,7 @@ class SdchBrowserTest : public InProcessBrowserTest,
run_loop.Run();
}
- uint16 test_server_port() { return test_server_.port(); }
+ uint16_t test_server_port() { return test_server_.port(); }
void SetSdchCacheability(bool cache_sdch_response) {
base::RunLoop run_loop;
« no previous file with comments | « chrome/browser/net/safe_search_util.cc ('k') | chrome/browser/net/service_providers_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698