Index: chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/BrowsingDataCounterCallback.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/BrowsingDataCounterCallback.java b/chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/BrowsingDataCounterCallback.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..62fde589d83563604799bc8621611286689df488 |
--- /dev/null |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/preferences/privacy/BrowsingDataCounterCallback.java |
@@ -0,0 +1,12 @@ |
+// Copyright 2016 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.chrome.browser.preferences.privacy; |
+ |
+/** |
+ * Can receive a callback from a BrowsingDataCounter. |
+ */ |
+public interface BrowsingDataCounterCallback { |
newt (away)
2016/01/12 18:55:26
since this is only used by BrowsingDataCounterBrid
msramek
2016/01/13 15:27:53
Done.
|
+ public void onCounterFinished(String result); |
+} |