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

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

Issue 452613002: [Checkstyle] Update class member variable names to match style guides. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: boliu 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: android_webview/java/src/org/chromium/android_webview/ClientCertLookupTable.java
diff --git a/android_webview/java/src/org/chromium/android_webview/ClientCertLookupTable.java b/android_webview/java/src/org/chromium/android_webview/ClientCertLookupTable.java
index 65ef44aced532b94817952e80b88d17efce5de61..88e6ed1408ef1976330b46e06120ef77707801fb 100644
--- a/android_webview/java/src/org/chromium/android_webview/ClientCertLookupTable.java
+++ b/android_webview/java/src/org/chromium/android_webview/ClientCertLookupTable.java
@@ -22,17 +22,17 @@ public class ClientCertLookupTable {
* A container for the certificate data.
*/
public static class Cert {
- AndroidPrivateKey privateKey;
- byte[][] certChain;
+ AndroidPrivateKey mPrivateKey;
+ byte[][] mCertChain;
public Cert(AndroidPrivateKey privateKey, byte[][] certChain) {
- this.privateKey = privateKey;
+ this.mPrivateKey = privateKey;
byte[][] newChain = new byte[certChain.length][];
for (int i = 0; i < certChain.length; i++) {
newChain[i] = Arrays.copyOf(certChain[i], certChain[i].length);
}
- this.certChain = newChain;
+ this.mCertChain = newChain;
}
- };
+ }
private final Map<String, Cert> mCerts;
private final Set<String> mDenieds;

Powered by Google App Engine
This is Rietveld 408576698