| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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; | 5 package org.chromium.content_shell; |
| 6 | 6 |
| 7 import android.app.Application; | 7 import android.app.Application; |
| 8 | 8 |
| 9 import org.chromium.base.PathUtils; | 9 import org.chromium.base.PathUtils; |
| 10 import org.chromium.content.app.LibraryLoader; | 10 import org.chromium.content.app.LibraryLoader; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 initializeApplicationParameters(); | 26 initializeApplicationParameters(); |
| 27 } | 27 } |
| 28 | 28 |
| 29 public static void initializeApplicationParameters() { | 29 public static void initializeApplicationParameters() { |
| 30 ResourceExtractor.setMandatoryPaksToExtract(MANDATORY_PAK_FILES); | 30 ResourceExtractor.setMandatoryPaksToExtract(MANDATORY_PAK_FILES); |
| 31 LibraryLoader.setLibraryToLoad(NATIVE_LIBRARY); | 31 LibraryLoader.setLibraryToLoad(NATIVE_LIBRARY); |
| 32 PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX); | 32 PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX); |
| 33 } | 33 } |
| 34 | 34 |
| 35 } | 35 } |
| OLD | NEW |