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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/compositor/scene_layer/ContextualSearchSceneLayer.java

Issue 1347023004: [Contextual Search] Add close button in maximized state (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup rebase Created 5 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: chrome/android/java/src/org/chromium/chrome/browser/compositor/scene_layer/ContextualSearchSceneLayer.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/compositor/scene_layer/ContextualSearchSceneLayer.java b/chrome/android/java/src/org/chromium/chrome/browser/compositor/scene_layer/ContextualSearchSceneLayer.java
index ed13d4662d0f890495e923b708de50125da39268..1b216d3daca916ed7df8cfa9bf57a2051664e528 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/compositor/scene_layer/ContextualSearchSceneLayer.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/compositor/scene_layer/ContextualSearchSceneLayer.java
@@ -60,7 +60,6 @@ public class ContextualSearchSceneLayer extends SceneLayer {
float arrowIconOpacity = mSearchPanel.getArrowIconOpacity();
float arrowIconRotation = mSearchPanel.getArrowIconRotation();
- boolean closeIconVisible = mSearchPanel.isCloseIconVisible();
float closeIconOpacity = mSearchPanel.getCloseIconOpacity();
boolean isProgressBarVisible = mSearchPanel.isProgressBarVisible();
@@ -99,7 +98,6 @@ public class ContextualSearchSceneLayer extends SceneLayer {
searchBarShadowOpacity,
arrowIconOpacity,
arrowIconRotation,
- closeIconVisible,
closeIconOpacity,
isProgressBarVisible,
progressBarY * mDpToPx,
@@ -158,7 +156,6 @@ public class ContextualSearchSceneLayer extends SceneLayer {
float searchBarShadowOpacity,
float arrowIconOpacity,
float arrowIconRotation,
- boolean closeIconVisible,
float closeIconOpacity,
boolean isProgressBarVisible,
float progressBarY,

Powered by Google App Engine
This is Rietveld 408576698