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

Unified Diff: blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpClientContext.java

Issue 2362693003: Add framework for sending feedback for Blimp. (Closed)
Patch Set: Rebased for good measure Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpClientContext.java
diff --git a/blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpClientContext.java b/blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpClientContext.java
index cab3cd5327199b90faf8d9d7d366278cde49fd99..c2606707ef9e5638799f533d5b5c3a78a55f110d 100644
--- a/blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpClientContext.java
+++ b/blimp/client/public/android/java/src/org/chromium/blimp_public/BlimpClientContext.java
@@ -9,6 +9,8 @@ import android.preference.PreferenceFragment;
import org.chromium.blimp_public.contents.BlimpContents;
import org.chromium.ui.base.WindowAndroid;
+import java.util.Map;
+
/**
* BlimpClientContext is the Java representation of a native BlimpClientContext object.
* It is owned by the native BrowserContext.
@@ -51,4 +53,10 @@ public interface BlimpClientContext {
* Start authentication flow and connection to engine.
*/
void connect();
+
+ /**
+ * Gathers data about Blimp that should be send for feedback reports.
+ * @return a map of all the Blimp-related feedback data.
+ */
+ Map<String, String> getFeedbackMap();
}

Powered by Google App Engine
This is Rietveld 408576698