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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/tab/TabDelegateFactory.java

Issue 2484293003: Use only renderer driven offsets for fullscreen state. (Closed)
Patch Set: Partially disable testControlsShownOnUnresponsiveRenderer due to timing issues with renderer logic … 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/tab/TabDelegateFactory.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/tab/TabDelegateFactory.java b/chrome/android/java/src/org/chromium/chrome/browser/tab/TabDelegateFactory.java
index 0770119e589a896f798f3bd82fcb40c1216fd830..5b808aecdb416101c9b53bb95ece07d8cb4d755f 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/tab/TabDelegateFactory.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/tab/TabDelegateFactory.java
@@ -56,7 +56,7 @@ public class TabDelegateFactory {
* @return {@link BrowserControlsVisibilityDelegate} to be used for the given tab.
*/
public BrowserControlsVisibilityDelegate createBrowserControlsVisibilityDelegate(Tab tab) {
- return new BrowserControlsVisibilityDelegate(tab);
+ return new TabStateBrowserControlsVisibilityDelegate(tab);
}
public TabDelegateFactory createNewTabDelegateFactory() {

Powered by Google App Engine
This is Rietveld 408576698