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

Unified Diff: chromeos/dbus/fake_audio_dsp_client.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/fake_ap_manager_client.h ('k') | chromeos/dbus/fake_audio_dsp_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/fake_audio_dsp_client.h
diff --git a/chromeos/dbus/fake_audio_dsp_client.h b/chromeos/dbus/fake_audio_dsp_client.h
index 05181ca7b2bf2c02bca7b4ed024fb05f59d33b2a..7bdab2a043a0c9af82e7b2a14d0b39cc09d41453 100644
--- a/chromeos/dbus/fake_audio_dsp_client.h
+++ b/chromeos/dbus/fake_audio_dsp_client.h
@@ -5,7 +5,9 @@
#ifndef CHROMEOS_DBUS_FAKE_AUDIO_DSP_CLIENT_H_
#define CHROMEOS_DBUS_FAKE_AUDIO_DSP_CLIENT_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
+#include "base/macros.h"
#include "chromeos/chromeos_export.h"
#include "chromeos/dbus/audio_dsp_client.h"
#include "chromeos/dbus/dbus_client.h"
@@ -36,16 +38,16 @@ class CHROMEOS_EXPORT FakeAudioDspClient : public AudioDspClient {
void GetBass(const DoubleDBusMethodCallback& callback) override;
void GetCapabilitiesOEM(
const ThreeStringDBusMethodCallback& callback) override;
- void SetCapabilitiesOEM(uint32 speaker_id,
+ void SetCapabilitiesOEM(uint32_t speaker_id,
const std::string& speaker_capabilities,
const std::string& driver_capabilities,
const VoidDBusMethodCallback& callback) override;
- void GetFilterConfigOEM(uint32 speaker_id,
+ void GetFilterConfigOEM(uint32_t speaker_id,
const TwoStringDBusMethodCallback& callback) override;
void SetFilterConfigOEM(const std::string& speaker_config,
const std::string& driver_config,
const VoidDBusMethodCallback& callback) override;
- void SetSourceType(uint16 source_type,
+ void SetSourceType(uint16_t source_type,
const VoidDBusMethodCallback& callback) override;
void AmplifierVolumeChanged(double db_spl,
const VoidDBusMethodCallback& callback) override;
« no previous file with comments | « chromeos/dbus/fake_ap_manager_client.h ('k') | chromeos/dbus/fake_audio_dsp_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698