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

Unified Diff: chromeos/dbus/volume_state.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/update_engine_client.cc ('k') | chromeos/disks/disk_mount_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/volume_state.h
diff --git a/chromeos/dbus/volume_state.h b/chromeos/dbus/volume_state.h
index 0d0a30598bca1fbcf6674a966c6ca89246ebad03..caa08483773e6b4a1574ddd5a90e81652ae9e647 100644
--- a/chromeos/dbus/volume_state.h
+++ b/chromeos/dbus/volume_state.h
@@ -5,17 +5,18 @@
#ifndef CHROMEOS_DBUS_VOLUME_STATE_H_
#define CHROMEOS_DBUS_VOLUME_STATE_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
#include "chromeos/chromeos_export.h"
namespace chromeos {
struct CHROMEOS_EXPORT VolumeState {
- int32 output_volume;
+ int32_t output_volume;
bool output_system_mute;
- int32 input_gain;
+ int32_t input_gain;
bool input_mute;
bool output_user_mute;
« no previous file with comments | « chromeos/dbus/update_engine_client.cc ('k') | chromeos/disks/disk_mount_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698