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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/fullscreen/FullscreenManager.java

Issue 2454263003: Pipe bottom control info to ChromeFullscreenManager (Closed)
Patch Set: address comments 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/android/java/src/org/chromium/chrome/browser/fullscreen/FullscreenManager.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/fullscreen/FullscreenManager.java b/chrome/android/java/src/org/chromium/chrome/browser/fullscreen/FullscreenManager.java
index 47d7bbc041b5195cc888de4b98284a7004546996..7e9c35cbf4eaa266f3b235b93fd9a4da0e6c3442 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/fullscreen/FullscreenManager.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/fullscreen/FullscreenManager.java
@@ -109,10 +109,12 @@ public abstract class FullscreenManager {
* Updates the positions of the browser controls and content based on the desired position of
* the current tab.
*
- * @param controlsOffset The Y offset of the browser controls.
- * @param contentOffset The Y offset for the content.
+ * @param topControlsOffset The Y offset of the top controls.
+ * @param bottomControlsOffset The Y offset of the bottom controls.
+ * @param topContentOffset The Y offset for the content.
*/
- public abstract void setPositionsForTab(float controlsOffset, float contentOffset);
+ public abstract void setPositionsForTab(float topControlsOffset, float bottomControlsOffset,
+ float topContentOffset);
/**
* Updates the current ContentView's children and any popups with the correct offsets based on

Powered by Google App Engine
This is Rietveld 408576698