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

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

Issue 2443613002: Rename classes related to top controls (Closed)
Patch Set: fix test Created 4 years, 2 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: 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() {

Powered by Google App Engine
This is Rietveld 408576698