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

Unified Diff: chromeos/dbus/audio_node.cc

Issue 1540803002: Switch to standard integer types in chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes 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 | « chromeos/dbus/audio_node.h ('k') | chromeos/dbus/blocking_method_caller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/audio_node.cc
diff --git a/chromeos/dbus/audio_node.cc b/chromeos/dbus/audio_node.cc
index c29ffb8753ad94e881388699aaafad9c1a248a67..17dd6979c036f56ec0736fb17b6709a8f6c7c1da 100644
--- a/chromeos/dbus/audio_node.cc
+++ b/chromeos/dbus/audio_node.cc
@@ -4,6 +4,8 @@
#include "chromeos/dbus/audio_node.h"
+#include <stdint.h>
+
#include "base/format_macros.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
@@ -18,20 +20,19 @@ AudioNode::AudioNode()
}
AudioNode::AudioNode(bool is_input,
- uint64 id,
+ uint64_t id,
std::string device_name,
std::string type,
std::string name,
bool active,
- uint64 plugged_time)
+ uint64_t plugged_time)
: is_input(is_input),
id(id),
device_name(device_name),
type(type),
name(name),
active(active),
- plugged_time(plugged_time) {
-}
+ plugged_time(plugged_time) {}
AudioNode::~AudioNode() {}
« no previous file with comments | « chromeos/dbus/audio_node.h ('k') | chromeos/dbus/blocking_method_caller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698