summaryrefslogtreecommitdiffstats
path: root/extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc')
-rw-r--r--extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc b/extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc
index a1563c7..f859a5c 100644
--- a/extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc
+++ b/extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc
@@ -4,6 +4,8 @@
#include "extensions/shell/browser/shell_audio_controller_chromeos.h"
+#include <stdint.h>
+
#include "base/macros.h"
#include "chromeos/audio/audio_device.h"
#include "chromeos/audio/audio_devices_pref_handler.h"
@@ -56,7 +58,7 @@ class ShellAudioControllerTest : public testing::Test {
}
// Changes the active state of the node with |id| in |nodes|.
- void SetNodeActive(AudioNodeList* nodes, uint64 id, bool active) {
+ void SetNodeActive(AudioNodeList* nodes, uint64_t id, bool active) {
for (AudioNodeList::iterator it = nodes->begin();
it != nodes->end(); ++it) {
if (it->id == id) {
@@ -72,7 +74,7 @@ class ShellAudioControllerTest : public testing::Test {
scoped_ptr<ShellAudioController> controller_;
// Next audio node ID to be returned by CreateNode().
- uint64 next_node_id_;
+ uint64_t next_node_id_;
private:
DISALLOW_COPY_AND_ASSIGN(ShellAudioControllerTest);