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

Unified Diff: chrome/test/remoting/it2me_browsertest.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
« no previous file with comments | « chrome/test/ppapi/ppapi_test.cc ('k') | chrome/test/remoting/key_code_conv.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/remoting/it2me_browsertest.cc
diff --git a/chrome/test/remoting/it2me_browsertest.cc b/chrome/test/remoting/it2me_browsertest.cc
index e13d05ad1bf55e5d9aa4b011412ac8ae9c5f8fef..0c35eae0cb674063df043d14657018e8c4fde9da 100644
--- a/chrome/test/remoting/it2me_browsertest.cc
+++ b/chrome/test/remoting/it2me_browsertest.cc
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stdint.h>
+
#include "base/strings/string_number_conversions.h"
#include "chrome/test/remoting/remote_desktop_browsertest.h"
@@ -79,7 +81,7 @@ IN_PROC_BROWSER_TEST_F(It2MeBrowserTest, MANUAL_InvalidAccessCode) {
// changing its PIN portion.
std::string access_code = GetAccessCode(helpee_content);
- uint64 invalid_access_code = 0;
+ uint64_t invalid_access_code = 0;
ASSERT_TRUE(base::StringToUint64(access_code, &invalid_access_code));
std::ostringstream invalid_access_code_string;
« no previous file with comments | « chrome/test/ppapi/ppapi_test.cc ('k') | chrome/test/remoting/key_code_conv.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698