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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwResource.java

Issue 149113003: Findbugs: Fix public static fields in AwResource.java. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/android/findbugs_filter/findbugs_known_bugs.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/java/src/org/chromium/android_webview/AwResource.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwResource.java b/android_webview/java/src/org/chromium/android_webview/AwResource.java
index 7051acbcd4dbcfa787c4040a88085b24e8d5d9fe..a4fddcb5e65b0aced4e046afd707848e0ebb6532 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwResource.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwResource.java
@@ -27,14 +27,14 @@ public class AwResource {
// Raw resource ID for an HTML page to be displayed in the case of
// a specific load error.
- public static int RAW_LOAD_ERROR;
+ private static int RAW_LOAD_ERROR;
// Raw resource ID for an HTML page to be displayed in the case of
// a generic load error. (It's called NO_DOMAIN for legacy reasons).
- public static int RAW_NO_DOMAIN;
+ private static int RAW_NO_DOMAIN;
// String resource ID for the default text encoding to use.
- public static int STRING_DEFAULT_TEXT_ENCODING;
+ private static int STRING_DEFAULT_TEXT_ENCODING;
// The embedder should inject a Resources object that will be used
// to resolve Resource IDs into the actual resources.
« no previous file with comments | « no previous file | build/android/findbugs_filter/findbugs_known_bugs.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698