| 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 org.chromium.base.PathUtils; | 7 import org.chromium.base.PathUtils; |
| 8 import org.chromium.base.ResourceExtractor; |
| 9 |
| 8 import org.chromium.content.app.ContentApplication; | 10 import org.chromium.content.app.ContentApplication; |
| 9 import org.chromium.content.browser.ResourceExtractor; | 11 |
| 10 | 12 |
| 11 /** | 13 /** |
| 12 * Entry point for the content shell application. Handles initialization of inf
ormation that needs | 14 * Entry point for the content shell application. Handles initialization of inf
ormation that needs |
| 13 * to be shared across the main activity and the child services created. | 15 * to be shared across the main activity and the child services created. |
| 14 */ | 16 */ |
| 15 public class ContentShellApplication extends ContentApplication { | 17 public class ContentShellApplication extends ContentApplication { |
| 16 /** | 18 /** |
| 17 * icudtl.dat provides ICU (i18n library) with all the data for its | 19 * icudtl.dat provides ICU (i18n library) with all the data for its |
| 18 * operation. We use to link it statically to our binary, but not any more | 20 * operation. We use to link it statically to our binary, but not any more |
| 19 * so that we have to install it along with other mandatory pak files. | 21 * so that we have to install it along with other mandatory pak files. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 30 super.onCreate(); | 32 super.onCreate(); |
| 31 initializeApplicationParameters(); | 33 initializeApplicationParameters(); |
| 32 } | 34 } |
| 33 | 35 |
| 34 public static void initializeApplicationParameters() { | 36 public static void initializeApplicationParameters() { |
| 35 ResourceExtractor.setMandatoryPaksToExtract(MANDATORY_PAK_FILES); | 37 ResourceExtractor.setMandatoryPaksToExtract(MANDATORY_PAK_FILES); |
| 36 PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX); | 38 PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX); |
| 37 } | 39 } |
| 38 | 40 |
| 39 } | 41 } |
| OLD | NEW |