Index: android_webview/java/src/org/chromium/android_webview/PlatformServiceBridge.java |
diff --git a/android_webview/java/src/org/chromium/android_webview/PlatformServiceBridge.java b/android_webview/java/src/org/chromium/android_webview/PlatformServiceBridge.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..73f03b40adaceb9f5ac1dcfc5f4e83b932de3384 |
--- /dev/null |
+++ b/android_webview/java/src/org/chromium/android_webview/PlatformServiceBridge.java |
@@ -0,0 +1,16 @@ |
+// Copyright 2015 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. |
+ |
+package org.chromium.android_webview; |
+ |
+import android.webkit.ValueCallback; |
+ |
+/** |
+ * A class that manages platform specific implementation details. Some |
+ * services can be provided by services that are specific to a platform |
+ * (i.e. Google Services). |
+ */ |
+public class PlatformServiceBridge { |
+ public void setMetricsSettingListener(ValueCallback<Boolean> callback) {} |
+} |