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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanel.java

Issue 1736203002: [Contextual Search] Add metrics for Resolve and View timing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switched to using a separate timer. Created 4 years, 10 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: chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanel.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanel.java b/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanel.java
index 50796ab6cae0f71c25fc96289dae8ded541f836a..7b85f98d93225730a13780a24cfb788d739056b2 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanel.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanel.java
@@ -383,6 +383,17 @@ public class ContextualSearchPanel extends OverlayPanel {
}
/**
+ * Called after the panel has navigated to prefetched Search Results.
+ * If the user has the panel open then they will see the prefetched result starting to load.
+ * Currently this just logs the time between the start of the search until the results start to
+ * render in the Panel.
+ * @param didResolve Whether the search required the Search Term to be resolved.
+ */
+ public void onPanelNavigatedToPrefetchedSearch(boolean didResolve) {
+ mPanelMetrics.onPanelNavigatedToPrefetchedSearch(didResolve);
+ }
+
+ /**
* Maximizes the Contextual Search Panel, then promotes it to a regular Tab.
* @param reason The {@code StateChangeReason} behind the maximization and promotion to tab.
*/
@@ -453,6 +464,7 @@ public class ContextualSearchPanel extends OverlayPanel {
cancelSearchTermResolutionAnimation();
getSearchBarControl().setSearchTerm(searchTerm);
resetSearchBarTermOpacity();
+ mPanelMetrics.onSearchRequestStarted();
}
/**
@@ -464,13 +476,15 @@ public class ContextualSearchPanel extends OverlayPanel {
cancelSearchTermResolutionAnimation();
getSearchBarControl().setSearchContext(selection, end);
resetSearchBarContextOpacity();
+ mPanelMetrics.onSearchRequestStarted();
}
/**
* Handles showing the resolved search term in the SearchBar.
* @param searchTerm The string that represents the search term.
*/
- public void onSearchTermResolutionResponse(String searchTerm) {
+ public void onSearchTermResolved(String searchTerm) {
+ mPanelMetrics.onSearchTermResolved();
getSearchBarControl().setSearchTerm(searchTerm);
animateSearchTermResolution();
}
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelMetrics.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698