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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/ssl/SecurityStateModel.java

Issue 1314843007: Refactor connection_security into SecurityStateModel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: create SecurityStateModel for chromeos login webview Created 5 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.chrome.browser.ssl;
6
7 import org.chromium.content_public.browser.WebContents;
8
9 /**
10 * Provides a way of accessing helpers for page security state.
11 */
12 public class SecurityStateModel {
13 /**
14 * Fetch the security level for a given web contents.
15 *
16 * @param webContents The web contents to get the security level for.
17 * @return The ConnectionSecurityLevel for the specified web contents.
18 *
19 * @see ConnectionSecurityLevel
20 */
21 public static int getSecurityLevelForWebContents(WebContents webContents) {
22 if (webContents == null) return ConnectionSecurityLevel.NONE;
23 return nativeGetSecurityLevelForWebContents(webContents);
24 }
25
26 /**
27 * @param webContents The web contents to query for deprecated SHA-1 presenc e.
28 * @return Whether the security level of the page was deprecated due to SHA- 1.
29 */
30 public static boolean isDeprecatedSHA1Present(WebContents webContents) {
31 if (webContents == null) return false;
32 return nativeIsDeprecatedSHA1Present(webContents);
33 }
34
35 /**
36 * @param webContents The web contents to query for passive mixed content pr esence.
37 * @return Whether the page contains passive mixed content.
38 */
39 public static boolean isPassiveMixedContentPresent(WebContents webContents) {
40 if (webContents == null) return false;
41 return nativeIsPassiveMixedContentPresent(webContents);
42 }
43
44 private SecurityStateModel() {}
45
46 private static native int nativeGetSecurityLevelForWebContents(WebContents w ebContents);
47 private static native boolean nativeIsDeprecatedSHA1Present(WebContents webC ontents);
48 private static native boolean nativeIsPassiveMixedContentPresent(WebContents webContents);
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698