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

Unified Diff: chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellToolbar.java

Issue 189133005: Rename chromium_testshell target to chrome_shell_apk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 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: chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellToolbar.java
diff --git a/chrome/android/shell/java/src/org/chromium/chrome/shell/TestShellToolbar.java b/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellToolbar.java
similarity index 92%
rename from chrome/android/shell/java/src/org/chromium/chrome/shell/TestShellToolbar.java
rename to chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellToolbar.java
index 6c79b16d93daf1d5752d1c74a71091d8aa4289da..48b91fd49c6b4b6afd1feeadf53da4ddd302187d 100644
--- a/chrome/android/shell/java/src/org/chromium/chrome/shell/TestShellToolbar.java
+++ b/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellToolbar.java
@@ -27,7 +27,7 @@ import org.chromium.chrome.browser.appmenu.AppMenuHandler;
/**
* A Toolbar {@link View} that shows the URL and navigation buttons.
*/
-public class TestShellToolbar extends LinearLayout {
+public class ChromeShellToolbar extends LinearLayout {
private static final long COMPLETED_PROGRESS_TIMEOUT_MS = 200;
private final Runnable mClearProgressRunnable = new Runnable() {
@@ -40,7 +40,7 @@ public class TestShellToolbar extends LinearLayout {
private EditText mUrlTextView;
private ClipDrawable mProgressDrawable;
- private TestShellTab mTab;
+ private ChromeShellTab mTab;
private final TabObserver mTabObserver = new TabObserverImpl();
private AppMenuHandler mMenuHandler;
@@ -50,7 +50,7 @@ public class TestShellToolbar extends LinearLayout {
* @param context The Context the view is running in.
* @param attrs The attributes of the XML tag that is inflating the view.
*/
- public TestShellToolbar(Context context, AttributeSet attrs) {
+ public ChromeShellToolbar(Context context, AttributeSet attrs) {
super(context, attrs);
}
@@ -58,7 +58,7 @@ public class TestShellToolbar extends LinearLayout {
* The toolbar will visually represent the state of {@code tab}.
* @param tab The Tab that should be represented.
*/
- public void showTab(TestShellTab tab) {
+ public void showTab(ChromeShellTab tab) {
if (mTab != null) mTab.removeObserver(mTabObserver);
mTab = tab;
mTab.addObserver(mTabObserver);
@@ -84,7 +84,7 @@ public class TestShellToolbar extends LinearLayout {
initializeMenuButton();
}
- public void setMenuHandler(AppMenuHandler menuHandler) {
+ void setMenuHandler(AppMenuHandler menuHandler) {
mMenuHandler = menuHandler;
ImageButton menuButton = (ImageButton) findViewById(R.id.menu_button);
mAppMenuButtonHelper = new AppMenuButtonHelper(menuButton, mMenuHandler);
@@ -148,12 +148,12 @@ public class TestShellToolbar extends LinearLayout {
private class TabObserverImpl extends EmptyTabObserver {
@Override
public void onLoadProgressChanged(Tab tab, int progress) {
- if (tab == mTab) TestShellToolbar.this.onLoadProgressChanged(progress);
+ if (tab == mTab) ChromeShellToolbar.this.onLoadProgressChanged(progress);
}
@Override
public void onUpdateUrl(Tab tab, String url) {
- if (tab == mTab) TestShellToolbar.this.onUpdateUrl(url);
+ if (tab == mTab) ChromeShellToolbar.this.onUpdateUrl(url);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698