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

Unified Diff: sky/shell/android/org/domokit/sky/shell/SkyApplication.java

Issue 1211253004: Add MineDigger.apk that works offline (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: one more examples Created 5 years, 6 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
« no previous file with comments | « sky/shell/android/org/domokit/sky/shell/SkyActivity.java ('k') | sky/shell/linux/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/shell/android/org/domokit/sky/shell/SkyApplication.java
diff --git a/sky/shell/android/org/domokit/sky/shell/SkyApplication.java b/sky/shell/android/org/domokit/sky/shell/SkyApplication.java
index 0fd9294b30760d9b2895327840fa1e632b4224a7..7c3885be4c614ec9023b99d80e04336fa0105349 100644
--- a/sky/shell/android/org/domokit/sky/shell/SkyApplication.java
+++ b/sky/shell/android/org/domokit/sky/shell/SkyApplication.java
@@ -23,10 +23,12 @@ import org.domokit.oknet.NetworkServiceImpl;
* state and initializations.
*/
public class SkyApplication extends BaseChromiumApplication {
+ static final String SNAPSHOT = "snapshot_blob.bin";
+
private static final String TAG = "SkyApplication";
private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "sky_shell";
private static final String[] SKY_MANDATORY_PAKS = {
- "icudtl.dat",
+ "icudtl.dat", SNAPSHOT
};
@Override
@@ -39,7 +41,8 @@ public class SkyApplication extends BaseChromiumApplication {
}
private void initializeJavaUtils() {
- PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX, getApplicationContext());
+ PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX,
+ getApplicationContext());
}
private void initializeNative() {
« no previous file with comments | « sky/shell/android/org/domokit/sky/shell/SkyActivity.java ('k') | sky/shell/linux/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698