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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java

Issue 12623031: Pass the overdraw value to the browser w/ frame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Interface for test file Created 7 years, 9 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: content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
index 9d765a3bb309b83b6c271a901d97d5017a19916c..06729c188cf569bf4cc7b8d100c3cf82ec86a8f0 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
@@ -60,9 +60,10 @@ public class ContentViewClient {
* Notifies the client that the position of the top controls has changed.
* @param topControlsOffsetYPix The Y offset of the top controls in physical pixels.
* @param contentOffsetYPix The Y offset of the content in physical pixels.
+ * @param overdrawBottomHeightPix The overdraw height.
*/
public void onOffsetsForFullscreenChanged(
- float topControlsOffsetYPix, float contentOffsetYPix) {
+ float topControlsOffsetYPix, float contentOffsetYPix, float overdrawBottomHeightPix) {
}
public void onTabCrash() {

Powered by Google App Engine
This is Rietveld 408576698