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

Unified Diff: chrome/android/java/proguard.flags

Issue 1234643002: customtabs: Convert to the new AIDL interface, temporarily imported. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added VisibleForTesting to util only used for testing Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/proguard.flags
diff --git a/chrome/android/java/proguard.flags b/chrome/android/java/proguard.flags
index d3339e06a62e09f50aeac60e37a827d6f221d77e..7c30dddac2b0f33d1383e17e6ee56bdfcd330db1 100644
--- a/chrome/android/java/proguard.flags
+++ b/chrome/android/java/proguard.flags
@@ -120,4 +120,12 @@
# TODO(aurimas): remove this when Google Play Services no longer uses setLatestEventInfo call
# that was deprecated in Android M. It is save to suppress this according to b/18510449.
--dontwarn com.google.android.gms.common.GooglePlayServicesUtil
+-dontwarn com.google.android.gms.common.GooglePlayServicesUtil
+
+# IntentUtils uses reflection to access a method that is hidden until API level 18.
+-dontnote org.chromium.chrome.browser.util.IntentUtils
+
+# Needed to compile ChromeTest.apk
+-keep class android.support.customtabs.ICustomTabsCallback** {
+ *;
+}

Powered by Google App Engine
This is Rietveld 408576698