| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.content_shell_apk; | 5 package org.chromium.content_shell_apk; |
| 6 | 6 |
| 7 import android.content.Context; |
| 8 |
| 7 import org.chromium.base.CommandLine; | 9 import org.chromium.base.CommandLine; |
| 8 import org.chromium.base.ContextUtils; | 10 import org.chromium.base.ContextUtils; |
| 9 import org.chromium.base.PathUtils; | 11 import org.chromium.base.PathUtils; |
| 10 import org.chromium.base.annotations.SuppressFBWarnings; | 12 import org.chromium.base.annotations.SuppressFBWarnings; |
| 11 import org.chromium.content.app.ContentApplication; | 13 import org.chromium.content.app.ContentApplication; |
| 12 | 14 |
| 13 /** | 15 /** |
| 14 * Entry point for the content shell application. Handles initialization of inf
ormation that needs | 16 * Entry point for the content shell application. Handles initialization of inf
ormation that needs |
| 15 * to be shared across the main activity and the child services created. | 17 * to be shared across the main activity and the child services created. |
| 16 */ | 18 */ |
| 17 public class ContentShellApplication extends ContentApplication { | 19 public class ContentShellApplication extends ContentApplication { |
| 18 | 20 |
| 19 public static final String COMMAND_LINE_FILE = "/data/local/tmp/content-shel
l-command-line"; | 21 public static final String COMMAND_LINE_FILE = "/data/local/tmp/content-shel
l-command-line"; |
| 20 private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "content_shell"; | 22 private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "content_shell"; |
| 21 | 23 |
| 22 public ContentShellApplication() { | 24 @Override |
| 23 super(); | 25 protected void attachBaseContext(Context base) { |
| 26 super.attachBaseContext(base); |
| 24 ContextUtils.initApplicationContext(this); | 27 ContextUtils.initApplicationContext(this); |
| 25 } | 28 } |
| 26 | 29 |
| 27 @Override | 30 @Override |
| 28 public void onCreate() { | |
| 29 super.onCreate(); | |
| 30 } | |
| 31 | |
| 32 @Override | |
| 33 protected void initializeLibraryDependencies() { | 31 protected void initializeLibraryDependencies() { |
| 34 PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX, t
his); | 32 PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX); |
| 35 } | 33 } |
| 36 | 34 |
| 37 @SuppressFBWarnings("DMI_HARDCODED_ABSOLUTE_FILENAME") | 35 @SuppressFBWarnings("DMI_HARDCODED_ABSOLUTE_FILENAME") |
| 38 @Override | 36 @Override |
| 39 public void initCommandLine() { | 37 public void initCommandLine() { |
| 40 if (!CommandLine.isInitialized()) { | 38 if (!CommandLine.isInitialized()) { |
| 41 CommandLine.initFromFile(COMMAND_LINE_FILE); | 39 CommandLine.initFromFile(COMMAND_LINE_FILE); |
| 42 } | 40 } |
| 43 } | 41 } |
| 44 | 42 |
| 45 } | 43 } |
| OLD | NEW |