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

Unified Diff: media/audio/win/waveout_output_win.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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: media/audio/win/waveout_output_win.h
diff --git a/media/audio/win/waveout_output_win.h b/media/audio/win/waveout_output_win.h
index bd9da5edc7bbdcb978c8dc9b278f4ea0f3dcff21..ec0a4102790a50d357c7318a6f9a60cc5a2e9b53 100644
--- a/media/audio/win/waveout_output_win.h
+++ b/media/audio/win/waveout_output_win.h
@@ -9,7 +9,6 @@
#include <mmsystem.h>
#include <mmreg.h>
-#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/synchronization/lock.h"
#include "base/win/scoped_handle.h"
@@ -96,7 +95,7 @@ class PCMWaveOutAudioOutputStream : public AudioOutputStream {
const int num_buffers_;
// The size in bytes of each audio buffer, we usually have two of these.
- uint32 buffer_size_;
+ uint32_t buffer_size_;
// Volume level from 0 to 1.
float volume_;
@@ -105,7 +104,7 @@ class PCMWaveOutAudioOutputStream : public AudioOutputStream {
const int channels_;
// Number of bytes yet to be played in the hardware buffer.
- uint32 pending_bytes_;
+ uint32_t pending_bytes_;
// The id assigned by the operating system to the selected wave output
// hardware device. Usually this is just -1 which means 'default device'.

Powered by Google App Engine
This is Rietveld 408576698