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

Unified Diff: extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc

Issue 1543053002: Switch to standard integer types in extensions/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-extensions-browser
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: extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc
diff --git a/extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc b/extensions/shell/browser/shell_audio_controller_chromeos_unittest.cc
index a1563c7fc0fd2451044def98593b4575555b61b7..f859a5c20c9fce0e2b8713364b69a2ff2e0e4480 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);
« no previous file with comments | « extensions/shell/browser/shell_audio_controller_chromeos.h ('k') | extensions/shell/browser/shell_browser_main_parts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698