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

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

Issue 1847063005: [Media, UI] Change MediaNotification style to MediaStyle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed nits Created 4 years, 8 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeFeatureList.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 } 105 }
106 106
107 -keep class android.support.v4.app.FragmentManager** { 107 -keep class android.support.v4.app.FragmentManager** {
108 *; 108 *;
109 } 109 }
110 110
111 -keep class android.support.v4.app.DialogFragment** { 111 -keep class android.support.v4.app.DialogFragment** {
112 *; 112 *;
113 } 113 }
114 114
115 -keep class android.support.v4.app.NotificationCompat** { 115 -keep class android.support.v7.app.NotificationCompat** {
116 *; 116 *;
117 } 117 }
118 118
119 -keep class android.support.v7.app.AlertDialog** { 119 -keep class android.support.v7.app.AlertDialog** {
120 *; 120 *;
121 } 121 }
122 122
123 -keep class com.google.android.gms.cast.CastMediaControlIntent* { 123 -keep class com.google.android.gms.cast.CastMediaControlIntent* {
124 *; 124 *;
125 } 125 }
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 #-keep public class android.webkit.WebVie 167 #-keep public class android.webkit.WebVie
168 168
169 #-dontwarn android.webkit.WebView 169 #-dontwarn android.webkit.WebView
170 -dontwarn android.net.http.SslCertificate 170 -dontwarn android.net.http.SslCertificate
171 171
172 # Needed for assertions in BaseChromiumApplication. 172 # Needed for assertions in BaseChromiumApplication.
173 # TODO(twellington): Remove these two lines when support for detecting a debug 173 # TODO(twellington): Remove these two lines when support for detecting a debug
174 # build lands (https://codereview.chromium.org/1597273005/). 174 # build lands (https://codereview.chromium.org/1597273005/).
175 -keep class android.support.v7.app.ToolbarActionBar$ToolbarCallbackWrapper {*;} 175 -keep class android.support.v7.app.ToolbarActionBar$ToolbarCallbackWrapper {*;}
176 -keep class android.support.v7.internal.app.ToolbarActionBar$ToolbarCallbackWrap per {*;} 176 -keep class android.support.v7.internal.app.ToolbarActionBar$ToolbarCallbackWrap per {*;}
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeFeatureList.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698