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

Side by Side Diff: chrome/android/java_staging/proguard.flags

Issue 1063853005: Unify Android Webview and Chrome's fling (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: add proguard Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 # Keep line number information, useful for stack traces. 1 # Keep line number information, useful for stack traces.
2 -keepattributes SourceFile,LineNumberTable 2 -keepattributes SourceFile,LineNumberTable
3 3
4 # Keep the annotations. 4 # Keep the annotations.
5 -keep @interface *** 5 -keep @interface ***
6 6
7 # Disable obfuscation for the following two packages. 7 # Disable obfuscation for the following two packages.
8 -keepnames class com.google.android.apps.chrome.**,org.chromium.** { 8 -keepnames class com.google.android.apps.chrome.**,org.chromium.** {
9 *; 9 *;
10 } 10 }
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 *; 113 *;
114 } 114 }
115 115
116 -keep class android.support.v7.app.AlertDialog** { 116 -keep class android.support.v7.app.AlertDialog** {
117 *; 117 *;
118 } 118 }
119 119
120 -keep class com.google.android.gms.cast.CastMediaControlIntent* { 120 -keep class com.google.android.gms.cast.CastMediaControlIntent* {
121 *; 121 *;
122 } 122 }
123
124 # fling is used by Android WebView and a Chrome test.
125 -keepclassmembers class org.chromium.content.browser.ContentViewCore {
126 public void fling(long, int, int, int, int);
127 }
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | chrome/android/javatests/src/org/chromium/chrome/browser/TabsTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698