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

Unified Diff: components/copresence/handlers/audio/audio_directive_list_unittest.cc

Issue 1546143002: Switch to standard integer types in components/, 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: components/copresence/handlers/audio/audio_directive_list_unittest.cc
diff --git a/components/copresence/handlers/audio/audio_directive_list_unittest.cc b/components/copresence/handlers/audio/audio_directive_list_unittest.cc
index ac7bd41752aa976f4c5e2a26c6c4fd222444da55..7e83d40462427a3703a12f5d28518299d52ad525 100644
--- a/components/copresence/handlers/audio/audio_directive_list_unittest.cc
+++ b/components/copresence/handlers/audio/audio_directive_list_unittest.cc
@@ -4,6 +4,8 @@
#include "components/copresence/handlers/audio/audio_directive_list.h"
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/message_loop/message_loop.h"
@@ -13,9 +15,9 @@ using testing::IsNull;
namespace copresence {
-static const int64 kTtl = 10;
+static const int64_t kTtl = 10;
-const Directive CreateDirective(int64 ttl) {
+const Directive CreateDirective(int64_t ttl) {
Directive directive;
directive.set_ttl_millis(ttl);
return directive;
« no previous file with comments | « components/copresence/handlers/audio/audio_directive_list.h ('k') | components/copresence/handlers/directive_handler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698