App ops: vibrator would now like a context for the package name.

Change-Id: I2964b500add8e31b0ddc8755dd769f9801a13777
diff --git a/src/com/android/phone/common/HapticFeedback.java b/src/com/android/phone/common/HapticFeedback.java
index c470730..e667ad6 100644
--- a/src/com/android/phone/common/HapticFeedback.java
+++ b/src/com/android/phone/common/HapticFeedback.java
@@ -92,7 +92,7 @@
         if (enabled) {
             // We don't rely on getSystemService(Context.VIBRATOR_SERVICE) to make sure this
             // vibrator object will be isolated from others.
-            mVibrator = new SystemVibrator();
+            mVibrator = new SystemVibrator(context);
             if (!loadHapticSystemPattern(context.getResources())) {
                 mHapticPattern = new long[] {0, DURATION, 2 * DURATION, 3 * DURATION};
             }