Index: content/browser/vibration/vibration_service.h |
diff --git a/content/browser/vibration/vibration_service.h b/content/browser/vibration/vibration_service.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1e65a78a5f5d4e2e99ce43a503aa820d6a6a2b00 |
--- /dev/null |
+++ b/content/browser/vibration/vibration_service.h |
@@ -0,0 +1,19 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CONTENT_BROWSER_VIBRATION_VIBRATION_SERVICE_H_ |
+#define CONTENT_BROWSER_VIBRATION_VIBRATION_SERVICE_H_ |
+ |
+namespace content { |
+ |
+class VibrationService { |
+ public: |
+ virtual ~VibrationService() {} |
Peter Beverloo
2013/06/13 11:27:45
nit: empty line below this one.
Michael van Ouwerkerk
2013/06/18 14:39:23
Done.
|
+ virtual void Vibrate(unsigned time) = 0; |
Peter Beverloo
2013/06/13 11:27:45
Since this is an empty interface, let's add some c
Michael van Ouwerkerk
2013/06/18 14:39:23
Done.
|
+ virtual void CancelVibration() = 0; |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_BROWSER_VIBRATION_VIBRATION_SERVICE_H_ |