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..79047e3068fcf102d74a92fc6992375ad6b8793f |
--- /dev/null |
+++ b/android_webview/java/src/org/chromium/android_webview/PlatformServiceBridge.java |
@@ -0,0 +1,17 @@ |
+// 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) { |
+ } |
+} |