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

Unified Diff: chromeos/dbus/audio_node.h

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_dsp_client.cc ('k') | chromeos/dbus/audio_node.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/audio_node.h
diff --git a/chromeos/dbus/audio_node.h b/chromeos/dbus/audio_node.h
index ea48c00db5e244e667bbf0b19dbba334bfcf99d5..5bc9fcf203b47aa230eb62f6994494b7dddeb13e 100644
--- a/chromeos/dbus/audio_node.h
+++ b/chromeos/dbus/audio_node.h
@@ -5,10 +5,11 @@
#ifndef CHROMEOS_DBUS_AUDIO_NODE_H_
#define CHROMEOS_DBUS_AUDIO_NODE_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "chromeos/chromeos_export.h"
namespace chromeos {
@@ -16,23 +17,23 @@ namespace chromeos {
// Structure to hold AudioNode data received from cras.
struct CHROMEOS_EXPORT AudioNode {
bool is_input;
- uint64 id;
+ uint64_t id;
std::string device_name;
std::string type;
std::string name;
std::string mic_positions;
bool active;
// Time that the node was plugged in.
- uint64 plugged_time;
+ uint64_t plugged_time;
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);
~AudioNode();
std::string ToString() const;
};
« no previous file with comments | « chromeos/dbus/audio_dsp_client.cc ('k') | chromeos/dbus/audio_node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698