Chromium Code Reviews| Index: base/android/multidex/java_disabled/src/org/chromium/base/multidex/ChromiumMultiDex.java |
| diff --git a/base/android/multidex/java_disabled/src/org/chromium/base/multidex/ChromiumMultiDex.java b/base/android/multidex/java_disabled/src/org/chromium/base/multidex/ChromiumMultiDex.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b9ec9b11f60c295d27a215aab44309d7c6af3cb2 |
| --- /dev/null |
| +++ b/base/android/multidex/java_disabled/src/org/chromium/base/multidex/ChromiumMultiDex.java |
| @@ -0,0 +1,22 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +package org.chromium.base.multidex; |
| + |
| +import android.content.Context; |
| + |
| +/** |
| + * Performs multidex installation for non-isolated processes. |
| + */ |
| +public class ChromiumMultiDex { |
| + |
| + /** |
| + * Does nothing. |
| + * |
| + * @param context The application context. |
| + */ |
| + public static void install(Context context) { |
|
Yaron
2015/11/11 02:06:38
wow - that's pretty awesome! What do you think abo
agrieve
2015/11/11 14:28:20
Keep in mind that doing things this way is super e
jbudorick
2015/11/12 20:33:40
Definitely worth it.
|
| + } |
| + |
| +} |