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

Side by Side Diff: blimp/client/android/java/src/org/chromium/blimp/BlimpApplication.java

Issue 1295243003: Initial commit of the blimp/ folder and target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address more nits Created 5 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 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.blimp;
6
7 import android.app.Application;
8
9 import org.chromium.base.PathUtils;
10 import org.chromium.base.ResourceExtractor;
11
12 /**
13 * The {@link Application} for the Blimp client.
14 */
15 public class BlimpApplication extends Application {
16 private static final String[] MANDATORY_PAK_FILES = new String[] {};
17
18 private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "blimp";
19
20 @Override
21 public void onCreate() {
22 super.onCreate();
23 ResourceExtractor.setMandatoryPaksToExtract(MANDATORY_PAK_FILES);
24 PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX, t his);
25 }
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698