diff options
author | estark <estark@chromium.org> | 2015-05-13 15:02:38 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-05-13 22:02:51 +0000 |
commit | f50c9b4834e151aa6b5538545a503614cb74f5f9 (patch) | |
tree | a9ba1192b8b1e7a2b1a158c567c818e72eef64e3 /chrome/chrome.gyp | |
parent | 4282f117db4ddb6b307efad849ec6635095e9cd1 (diff) | |
download | chromium_src-f50c9b4834e151aa6b5538545a503614cb74f5f9.zip chromium_src-f50c9b4834e151aa6b5538545a503614cb74f5f9.tar.gz chromium_src-f50c9b4834e151aa6b5538545a503614cb74f5f9.tar.bz2 |
Move SecurityLevel into a class of its own
This CL moves |GetSecurityLevelForWebContents| and the |SecurityLevel|
enum into a class of their own: |ConnectionSecurityHelper| in
//chrome/browser/ssl (since it is applying Chrome-specific security
policy to determine the security level of a page).
Later, we will use the new |ConnectionSecurityHelper| class to compute a
security level for a page to send to the DevTools Security
panel. Specifically, we need to be able to calculate the security level
for a given page, not just the WebContents for the active tab.
BUG=484392
Committed: https://crrev.com/ca7c0a3374c21ab10c821f4f3a890afc79182acf
Cr-Commit-Position: refs/heads/master@{#329591}
Review URL: https://codereview.chromium.org/1123943002
Cr-Commit-Position: refs/heads/master@{#329724}
Diffstat (limited to 'chrome/chrome.gyp')
-rw-r--r-- | chrome/chrome.gyp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index fd701ce..1001ee3 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -577,6 +577,7 @@ 'chrome_resources.gyp:chrome_strings', 'chrome_strings_grd', 'chrome_version_java', + 'connection_security_helper_security_levels_java', 'document_tab_model_info_proto_java', 'profile_account_management_metrics_java', 'content_setting_java', @@ -584,7 +585,6 @@ 'page_info_connection_type_java', 'profile_sync_service_model_type_selection_java', 'resource_id_java', - 'toolbar_model_security_levels_java', 'tab_load_status_java', '../base/base.gyp:base', '../components/components.gyp:bookmarks_java', |