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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwContentsClientBridge.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/AwContentsClientBridge.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContentsClientBridge.java b/android_webview/java/src/org/chromium/android_webview/AwContentsClientBridge.java
index d495ba98bfa1ef5c60b6e4e7ce34a572811069d3..498dfbd436edbfd469e21ae75362113b2b211c71 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContentsClientBridge.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContentsClientBridge.java
@@ -207,7 +207,7 @@ public class AwContentsClientBridge {
}
if (cert != null) {
nativeProvideClientCertificateResponse(mNativeContentsClientBridge, id,
- cert.certChain, cert.privateKey);
+ cert.mCertChain, cert.mPrivateKey);
return;
}
// Build the list of principals from encoded versions.

Powered by Google App Engine
This is Rietveld 408576698