| Index: chrome/android/java/src/org/chromium/chrome/browser/ssl/ConnectionSecurityHelper.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ssl/ConnectionSecurityHelper.java b/chrome/android/java/src/org/chromium/chrome/browser/ssl/ConnectionSecurityHelper.java
|
| index 5d9b1b942fdff9259a9e1a0d1620f4f80639cc68..5e5c74b0ee17910b11a06b9731420c279fcb331f 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/ssl/ConnectionSecurityHelper.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/ssl/ConnectionSecurityHelper.java
|
| @@ -9,21 +9,21 @@ import org.chromium.content_public.browser.WebContents;
|
| /**
|
| * Provides a way of accessing helpers for connection security levels.
|
| */
|
| -public class ConnectionSecurityHelper {
|
| +public class ConnectionSecurityStatus {
|
| /**
|
| * Fetch the security level for a given web contents.
|
| *
|
| * @param webContents The web contents to get the security level for.
|
| - * @return The ConnectionSecurityHelperSecurityLevel for the specified web contents.
|
| + * @return The ConnectionSecurityStatusSecurityLevel for the specified web contents.
|
| *
|
| - * @see ConnectionSecurityHelperSecurityLevel
|
| + * @see ConnectionSecurityStatusSecurityLevel
|
| */
|
| public static int getSecurityLevelForWebContents(WebContents webContents) {
|
| - if (webContents == null) return ConnectionSecurityHelperSecurityLevel.NONE;
|
| + if (webContents == null) return ConnectionSecurityStatusSecurityLevel.NONE;
|
| return nativeGetSecurityLevelForWebContents(webContents);
|
| }
|
|
|
| - private ConnectionSecurityHelper() {}
|
| + private ConnectionSecurityStatus() {}
|
|
|
| private static native int nativeGetSecurityLevelForWebContents(WebContents webContents);
|
| }
|
|
|