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

Unified Diff: device/vibration/vibration_manager_impl_default.cc

Issue 1542163002: Switch to standard integer types in device/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win 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 | « device/usb/webusb_descriptors_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/vibration/vibration_manager_impl_default.cc
diff --git a/device/vibration/vibration_manager_impl_default.cc b/device/vibration/vibration_manager_impl_default.cc
index 7661827162da7e06e1364bfc9df02357e6c75f7b..25dba50c64472212eb893e3f75a4fd50ca83c78c 100644
--- a/device/vibration/vibration_manager_impl_default.cc
+++ b/device/vibration/vibration_manager_impl_default.cc
@@ -4,7 +4,8 @@
#include "device/vibration/vibration_manager_impl.h"
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "mojo/public/cpp/bindings/strong_binding.h"
namespace device {
@@ -13,7 +14,7 @@ namespace {
class VibrationManagerEmptyImpl : public VibrationManager {
public:
- void Vibrate(int64 milliseconds) override {}
+ void Vibrate(int64_t milliseconds) override {}
void Cancel() override {}
private:
« no previous file with comments | « device/usb/webusb_descriptors_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698