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

Unified Diff: chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc
diff --git a/chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc b/chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc
index 0331276a9f808ce98dcbd0bdf9204ac0851bd735..1f9269ce333ccbce7cd500ac36f63887b6bf49d5 100644
--- a/chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc
+++ b/chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc
@@ -121,6 +121,9 @@ void ContextualSearchSceneLayer::UpdateContextualSearchLayer(
jfloat divider_line_height,
jint divider_line_color,
jfloat divider_line_x_offset,
+ jboolean touch_highlight_visible,
+ jfloat touch_highlight_x_offset,
+ jfloat touch_highlight_width,
jobject j_profile) {
// Load the thumbnail if necessary.
@@ -214,7 +217,10 @@ void ContextualSearchSceneLayer::UpdateContextualSearchLayer(
divider_line_width,
divider_line_height,
divider_line_color,
- divider_line_x_offset);
+ divider_line_x_offset,
+ touch_highlight_visible,
+ touch_highlight_x_offset,
+ touch_highlight_width);
// Make the layer visible if it is not already.
contextual_search_layer_->layer()->SetHideLayerAndSubtree(false);

Powered by Google App Engine
This is Rietveld 408576698