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

Unified Diff: chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellApplication.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/ChromeShellApplication.java
diff --git a/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellApplication.java b/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellApplication.java
index f3d30bc3cfd260c28a873989d484fe5c6b670b57..fe48d05534d29d5cca757db88635138a9e49567e 100644
--- a/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellApplication.java
+++ b/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellApplication.java
@@ -21,7 +21,7 @@ import java.util.ArrayList;
* loading the right resources.
*/
public class ChromeShellApplication extends ChromiumApplication {
- private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "chromiumtestshell";
+ private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "chromeshell";
/**
* icudtl.dat provides ICU (i18n library) with all the necessary data
* for its operation. We used to link the data statically to our binary,
@@ -34,8 +34,7 @@ public class ChromeShellApplication extends ChromiumApplication {
"chrome_100_percent.pak",
"icudtl.dat",
};
- private static final String COMMAND_LINE_FILE =
- "/data/local/tmp/chromium-testshell-command-line";
+ private static final String COMMAND_LINE_FILE = "/data/local/tmp/chrome-shell-command-line";
ArrayList<ChromeShellApplicationObserver> mObservers;
@@ -61,9 +60,7 @@ public class ChromeShellApplication extends ChromiumApplication {
shouldFire &= observer.onSendBroadcast(intent);
}
- if (shouldFire) {
- super.sendBroadcast(intent);
- }
+ if (shouldFire) super.sendBroadcast(intent);
}
public void addObserver(ChromeShellApplicationObserver observer) {
@@ -99,6 +96,6 @@ public class ChromeShellApplication extends ChromiumApplication {
@Override
protected PKCS11AuthenticationManager getPKCS11AuthenticationManager() {
- return new TestShellPKCS11AuthenticationManager();
+ return new ChromeShellPKCS11AuthenticationManager();
}
}

Powered by Google App Engine
This is Rietveld 408576698