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

Unified Diff: base/android/multidex/java_disabled/src/org/chromium/base/multidex/ChromiumMultiDex.java

Issue 1408163009: [Android] Enable multidex for debug builds of ChromePublic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no-op ChromiumMultiDex.install for non-multidex builds Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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.
+ }
+
+}

Powered by Google App Engine
This is Rietveld 408576698