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

Unified Diff: content/public/android/javatests/src/org/chromium/content/browser/JavaBridgeCoercionTest.java

Issue 455523002: [Checkstyle] Update static variable and constant names to match style guides. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yfriendman's nits Created 6 years, 4 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
Index: content/public/android/javatests/src/org/chromium/content/browser/JavaBridgeCoercionTest.java
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/JavaBridgeCoercionTest.java b/content/public/android/javatests/src/org/chromium/content/browser/JavaBridgeCoercionTest.java
index 3afecfe9acab39b815623c2e122831a8c334bf6b..5c4a9823978ba84fe0d2c7f64507aaa17f589cc1 100644
--- a/content/public/android/javatests/src/org/chromium/content/browser/JavaBridgeCoercionTest.java
+++ b/content/public/android/javatests/src/org/chromium/content/browser/JavaBridgeCoercionTest.java
@@ -22,9 +22,9 @@ import org.chromium.base.test.util.Feature;
*/
public class JavaBridgeCoercionTest extends JavaBridgeTestBase {
private class TestObject extends Controller {
- private Object objectInstance;
- private CustomType customTypeInstance;
- private CustomType2 customType2Instance;
+ private Object mObjectInstance;
+ private CustomType mCustomTypeInstance;
+ private CustomType2 mCustomType2Instance;
private boolean mBooleanValue;
private byte mByteValue;
@@ -39,19 +39,19 @@ public class JavaBridgeCoercionTest extends JavaBridgeTestBase {
private CustomType mCustomTypeValue;
public TestObject() {
- objectInstance = new Object();
- customTypeInstance = new CustomType();
- customType2Instance = new CustomType2();
+ mObjectInstance = new Object();
+ mCustomTypeInstance = new CustomType();
+ mCustomType2Instance = new CustomType2();
}
public Object getObjectInstance() {
- return objectInstance;
+ return mObjectInstance;
}
public CustomType getCustomTypeInstance() {
- return customTypeInstance;
+ return mCustomTypeInstance;
}
public CustomType2 getCustomType2Instance() {
- return customType2Instance;
+ return mCustomType2Instance;
}
public synchronized void setBooleanValue(boolean x) {

Powered by Google App Engine
This is Rietveld 408576698