Make touch-action apply to double-tap zoom
[chromium-blink-merge.git] / content / port / browser / vibration_provider.h
blobdf2587f288d14ea60f4b5b1451beb1796105b12a
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_PORT_BROWSER_VIBRATION_PROVIDER_H_
6 #define CONTENT_PORT_BROWSER_VIBRATION_PROVIDER_H_
8 namespace content {
10 class VibrationProvider {
11 public:
12 // Device should start vibrating for N milliseconds.
13 virtual void Vibrate(int64 milliseconds) = 0;
15 // Cancels vibration of the device.
16 virtual void CancelVibration() = 0;
18 virtual ~VibrationProvider() {}
21 } // namespace content
23 #endif // CONTENT_PORT_BROWSER_VIBRATION_PROVIDER_H_