summaryrefslogtreecommitdiffstats
path: root/jingle/glue/thread_wrapper_unittest.cc
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-21 18:05:16 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-22 02:06:40 +0000
commita2a6db2c719778fc6aee9af55df156df4d626cae (patch)
treed96766684323ba68e0286018a70d5bfc7930d965 /jingle/glue/thread_wrapper_unittest.cc
parentf738fce08cff27c75b238ce239685dc7a5a2c185 (diff)
downloadchromium_src-a2a6db2c719778fc6aee9af55df156df4d626cae.zip
chromium_src-a2a6db2c719778fc6aee9af55df156df4d626cae.tar.gz
chromium_src-a2a6db2c719778fc6aee9af55df156df4d626cae.tar.bz2
Switch to standard integer types in jingle/.
BUG=138542 TBR=zea@chromium.org Review URL: https://codereview.chromium.org/1544473003 Cr-Commit-Position: refs/heads/master@{#366518}
Diffstat (limited to 'jingle/glue/thread_wrapper_unittest.cc')
-rw-r--r--jingle/glue/thread_wrapper_unittest.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/jingle/glue/thread_wrapper_unittest.cc b/jingle/glue/thread_wrapper_unittest.cc
index 5c4daf1..db590ef 100644
--- a/jingle/glue/thread_wrapper_unittest.cc
+++ b/jingle/glue/thread_wrapper_unittest.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/bind.h"
#include "base/compiler_specific.h"
#include "base/message_loop/message_loop.h"
@@ -17,8 +19,8 @@ using ::testing::Mock;
namespace jingle_glue {
-static const uint32 kTestMessage1 = 1;
-static const uint32 kTestMessage2 = 2;
+static const uint32_t kTestMessage1 = 1;
+static const uint32_t kTestMessage2 = 2;
static const int kTestDelayMs1 = 10;
static const int kTestDelayMs2 = 20;