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

Unified Diff: chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastApplication.java

Issue 638803002: Reorganizes Chromecast code to better reflect functional dependencies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: extra DEPS: chromecast/crash/android --> chromecast/common Created 6 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: chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastApplication.java
diff --git a/chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastApplication.java b/chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastApplication.java
deleted file mode 100644
index 2fb50a3201ec61cbec4188406df1388406d95437..0000000000000000000000000000000000000000
--- a/chromecast/shell/android/apk/src/org/chromium/chromecast/shell/CastApplication.java
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.chromecast.shell;
-
-import android.os.Build;
-import android.util.Log;
-
-import org.chromium.base.CommandLine;
-import org.chromium.base.PathUtils;
-import org.chromium.base.ResourceExtractor;
-import org.chromium.content.app.ContentApplication;
-
-/**
- * Entry point for the Android cast shell application. Handles initialization of information that
- * needs to be shared across the main activity and the child services created.
- *
- * Note that this gets run for each process, including sandboxed child render processes. Child
- * processes don't need most of the full "setup" performed in CastBrowserHelper.java, but they do
- * require a few basic pieces (found here).
- */
-public class CastApplication extends ContentApplication {
- private static final String TAG = "CastApplication";
-
- private static final String[] MANDATORY_PAK_FILES = new String[] {"cast_shell.pak"};
- private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "cast_shell";
- private static final String COMMAND_LINE_FILE = "/data/local/tmp/castshell-command-line";
-
- @Override
- public void onCreate() {
- super.onCreate();
- initializeApplicationParameters();
- }
-
- public static void initializeApplicationParameters() {
- ResourceExtractor.setMandatoryPaksToExtract(MANDATORY_PAK_FILES);
- PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX);
- }
-
- @Override
- public void initCommandLine() {
- if (allowCommandLineImport()) {
- Log.d(TAG, "Initializing command line from " + COMMAND_LINE_FILE);
- CommandLine.initFromFile(COMMAND_LINE_FILE);
- } else {
- CommandLine.init(null);
- }
- }
-
- private static boolean allowCommandLineImport() {
- return !Build.TYPE.equals("user");
- }
-}

Powered by Google App Engine
This is Rietveld 408576698