| 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 2585012738dfdd9a738e52a007eff55d10dac92e..0770119e589a896f798f3bd82fcb40c1216fd830 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
|
| @@ -51,12 +51,12 @@ public class TabDelegateFactory {
|
| }
|
|
|
| /**
|
| - * Creates the {@link TopControlsVisibilityDelegate} the tab will be initialized with.
|
| + * Creates the {@link BrowserControlsVisibilityDelegate} the tab will be initialized with.
|
| * @param tab The associated {@link Tab}.
|
| - * @return {@link TopControlsVisibilityDelegate} to be used for the given tab.
|
| + * @return {@link BrowserControlsVisibilityDelegate} to be used for the given tab.
|
| */
|
| - public TopControlsVisibilityDelegate createTopControlsVisibilityDelegate(Tab tab) {
|
| - return new TopControlsVisibilityDelegate(tab);
|
| + public BrowserControlsVisibilityDelegate createBrowserControlsVisibilityDelegate(Tab tab) {
|
| + return new BrowserControlsVisibilityDelegate(tab);
|
| }
|
|
|
| public TabDelegateFactory createNewTabDelegateFactory() {
|
|
|