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

Side by Side Diff: tools-webrtc/android/suppressions.xml

Issue 2670473004: Remove InlinedApi lint ignore. (Closed)
Patch Set: Immersive sticky only requires Kitkat not Lollipop. Created 3 years, 10 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 | webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.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 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <lint> 2 <lint>
3 <!-- These lint settings is for the Android linter that gets run by 3 <!-- These lint settings is for the Android linter that gets run by
4 lint_action.gypi on compile of WebRTC java code. All WebRTC java code 4 lint_action.gypi on compile of WebRTC java code. All WebRTC java code
5 should lint cleanly for the issues below. --> 5 should lint cleanly for the issues below. -->
6 <!-- TODO(phoglund): make work with suppress.py or remove printout referring 6 <!-- TODO(phoglund): make work with suppress.py or remove printout referring
7 to suppress.py. --> 7 to suppress.py. -->
8 <issue id="NewApi"></issue> 8 <issue id="NewApi"></issue>
9 9
10 <issue id="InlinedApi" severity="ignore"/>
11 <issue id="Assert" severity="ignore"/> 10 <issue id="Assert" severity="ignore"/>
12 <issue id="UseSparseArrays" severity="ignore"/> 11 <issue id="UseSparseArrays" severity="ignore"/>
13 12
14 <issue id="LongLogTag" severity="ignore"/> 13 <issue id="LongLogTag" severity="ignore"/>
15 <issue id="Registered" severity="ignore"/> 14 <issue id="Registered" severity="ignore"/>
16 <issue id="MissingPermission" severity="ignore"/> 15 <issue id="MissingPermission" severity="ignore"/>
17 <issue id="CommitPrefEdits" severity="ignore"/> 16 <issue id="CommitPrefEdits" severity="ignore"/>
18 <issue id="UnusedResources" severity="ignore"/> 17 <issue id="UnusedResources" severity="ignore"/>
19 <issue id="IconColors" severity="ignore"/> 18 <issue id="IconColors" severity="ignore"/>
20 <issue id="IconDipSize" severity="ignore"/> 19 <issue id="IconDipSize" severity="ignore"/>
21 <issue id="IconDuplicatesConfig" severity="ignore"/> 20 <issue id="IconDuplicatesConfig" severity="ignore"/>
22 <issue id="RelativeOverlap" severity="ignore"/> 21 <issue id="RelativeOverlap" severity="ignore"/>
23 <issue id="RtlCompat" severity="ignore"/> 22 <issue id="RtlCompat" severity="ignore"/>
24 <issue id="IconMissingDensityFolder" severity="ignore"/> 23 <issue id="IconMissingDensityFolder" severity="ignore"/>
25 <issue id="NewApi" severity="ignore"/> 24 <issue id="NewApi" severity="ignore"/>
26 <issue id="OldTargetApi" severity="ignore"/> 25 <issue id="OldTargetApi" severity="ignore"/>
27 26
28 <issue id="GoogleAppIndexingWarning" severity="ignore"/> 27 <issue id="GoogleAppIndexingWarning" severity="ignore"/>
29 <issue id="MissingRegistered" severity="ignore"/> 28 <issue id="MissingRegistered" severity="ignore"/>
30 29
31 <!-- These are just from the dummy AndroidManifest.xml we use for linting. 30 <!-- These are just from the dummy AndroidManifest.xml we use for linting.
32 It's in the same directory as this file. --> 31 It's in the same directory as this file. -->
33 <issue id="MissingApplicationIcon" severity="ignore"/> 32 <issue id="MissingApplicationIcon" severity="ignore"/>
34 <issue id="AllowBackup" severity="ignore"/> 33 <issue id="AllowBackup" severity="ignore"/>
35 <issue id="MissingVersion" severity="ignore"/> 34 <issue id="MissingVersion" severity="ignore"/>
35
36 <!-- Ignore all lint errors in Chromium code. -->
37 <issue id="all">
38 <ignore path="**/org/chromium/**/*.java" />
39 </issue>
36 </lint> 40 </lint>
OLDNEW
« no previous file with comments | « no previous file | webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698