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

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

Issue 2798123002: Remove crushed sprite resource and layer (Closed)
Patch Set: Rebase and fix my nits Created 3 years, 8 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/ContextualSearchPanelMetrics.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelMetrics.java b/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelMetrics.java
index 7f6c79d2acf60ac7de7f1c384c5b83977cabda90..9ddceca51602ec1c7ffb4482031e12682a0e423c 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelMetrics.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/compositor/bottombar/contextualsearch/ContextualSearchPanelMetrics.java
@@ -36,7 +36,6 @@ public class ContextualSearchPanelMetrics {
private boolean mHasExitedMaximized;
private boolean mIsSerpNavigation;
private boolean mWasActivatedByTap;
- private boolean mWasIconSpriteAnimated;
private boolean mWasPanelOpenedBeyondPeek;
private boolean mWasSelectionPartOfUrl;
private boolean mWasContextualCardsDataShown;
@@ -148,9 +147,6 @@ public class ContextualSearchPanelMetrics {
ContextualSearchUma.logBlacklistSeen(mBlacklistReason, mWasSearchContentViewSeen);
- ContextualSearchUma.logIconSpriteAnimated(mWasIconSpriteAnimated,
- mWasSearchContentViewSeen, mWasActivatedByTap);
-
if (mResultsSeenExperiments != null) {
mResultsSeenExperiments.logResultsSeen(
mWasSearchContentViewSeen, mWasActivatedByTap);
@@ -290,13 +286,6 @@ public class ContextualSearchPanelMetrics {
}
/**
- * @param wasIconSpriteAnimated Whether the search provider icon sprite was animated.
- */
- public void setWasIconSpriteAnimated(boolean wasIconSpriteAnimated) {
- mWasIconSpriteAnimated = wasIconSpriteAnimated;
- }
-
- /**
* @param wasPartOfUrl Whether the selected text was part of a URL.
*/
public void setWasSelectionPartOfUrl(boolean wasPartOfUrl) {

Powered by Google App Engine
This is Rietveld 408576698