- add sources.
[platform/framework/web/crosswalk.git] / src / content / shell / android / shell_apk / src / org / chromium / content_shell_apk / ContentShellApplication.java
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.content_shell_apk;
6
7 import org.chromium.base.PathUtils;
8 import org.chromium.content.app.ContentApplication;
9 import org.chromium.content.browser.ResourceExtractor;
10
11 /**
12  * Entry point for the content shell application.  Handles initialization of information that needs
13  * to be shared across the main activity and the child services created.
14  */
15 public class ContentShellApplication extends ContentApplication {
16
17     private static final String[] MANDATORY_PAK_FILES = new String[] {"content_shell.pak"};
18     private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "content_shell";
19
20     @Override
21     public void onCreate() {
22         super.onCreate();
23         initializeApplicationParameters();
24     }
25
26     public static void initializeApplicationParameters() {
27         ResourceExtractor.setMandatoryPaksToExtract(MANDATORY_PAK_FILES);
28         PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX);
29     }
30
31 }