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

Side by Side Diff: trunk/src/build/android/findbugs_filter/findbugs_exclude.xml

Issue 354833003: Revert 279677 "Generate java bindings for structs." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | trunk/src/build/get_landmines.py » ('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 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <!-- 8 <!--
9 Documentation: http://findbugs.sourceforge.net/manual/filter.html 9 Documentation: http://findbugs.sourceforge.net/manual/filter.html
10 In particular, ~ at the start of a string means it's a regex. 10 In particular, ~ at the start of a string means it's a regex.
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 </Match> 96 </Match>
97 <!-- 97 <!--
98 Ignore write to static field in GCMDriver, as it's the cleanest way to mark 98 Ignore write to static field in GCMDriver, as it's the cleanest way to mark
99 the singleton as null when the native counterpart is destroyed. 99 the singleton as null when the native counterpart is destroyed.
100 --> 100 -->
101 <Match> 101 <Match>
102 <Class name="~org\.chromium\.components\.gcm_driver\..*\.GCMDriver" /> 102 <Class name="~org\.chromium\.components\.gcm_driver\..*\.GCMDriver" />
103 <Method name="destroy" /> 103 <Method name="destroy" />
104 <Bug code="ST" /> 104 <Bug code="ST" />
105 </Match> 105 </Match>
106 <!--
107 Ignore mojo generated files.
108 -->
109 <Match>
110 <Class name="~.*\.mojom\..*" />
111 <Bug code="UuF,UrF" />
112 </Match>
113 </FindBugsFilter> 106 </FindBugsFilter>
OLDNEW
« no previous file with comments | « no previous file | trunk/src/build/get_landmines.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698