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

Side by Side Diff: content/public/android/java/src/org/chromium/content/browser/VibrationService.java

Issue 16781002: Vibration API: plumbing from Blink to Java. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use 'unsigned int' everywhere. Created 7 years, 6 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 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.
4
5 package org.chromium.content.browser;
6
7 import android.content.Context;
8 import android.os.Vibrator;
9
10 import org.chromium.base.CalledByNative;
11 import org.chromium.base.JNINamespace;
12
13 @JNINamespace("content")
bulach 2013/06/21 12:55:54 nit: move this right above the class, after the co
Michael van Ouwerkerk 2013/06/21 15:07:41 Done.
14 /**
15 * This is the implementation of the C++ counterpart VibrationService.
16 */
17 class VibrationService {
18
19 private final Vibrator mVibrator;
20
21 @CalledByNative
22 private static VibrationService create(Context context) {
23 return new VibrationService(context);
24 }
25
26 @CalledByNative
27 private void vibrate(long milliseconds) {
28 mVibrator.vibrate(milliseconds);
29 }
30
31 @CalledByNative
32 private void cancelVibration() {
33 mVibrator.cancel();
34 }
35
36 private VibrationService(Context context) {
37 mVibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE );
38 }
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698