OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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.mojo_shell_apk; | 5 package org.chromium.mojo_shell_apk; |
6 | 6 |
7 import android.content.Context; | 7 import android.content.Context; |
8 import android.util.Log; | 8 import android.util.Log; |
9 | 9 |
10 import dalvik.system.DexClassLoader; | 10 import dalvik.system.DexClassLoader; |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 } | 129 } |
130 | 130 |
131 private static File getAppDir(Context context) { | 131 private static File getAppDir(Context context) { |
132 return context.getDir(APP_DIRECTORY, Context.MODE_PRIVATE); | 132 return context.getDir(APP_DIRECTORY, Context.MODE_PRIVATE); |
133 } | 133 } |
134 | 134 |
135 private static File getAssetDir(Context context) { | 135 private static File getAssetDir(Context context) { |
136 return context.getDir(ASSET_DIRECTORY, Context.MODE_PRIVATE); | 136 return context.getDir(ASSET_DIRECTORY, Context.MODE_PRIVATE); |
137 } | 137 } |
138 } | 138 } |
OLD | NEW |