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

Unified Diff: chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm

Issue 1314843007: Refactor connection_security into SecurityStateModel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: palmer comments #2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm
diff --git a/chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm b/chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm
index b44638c2d1cb23d40a1e288c9d5f6d7b2a758533..806e6b3d4c15223f6d0def3c8b8b50c600354b14 100644
--- a/chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm
+++ b/chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.mm
@@ -543,23 +543,23 @@ void OmniboxViewMac::ApplyTextAttributes(
// TODO(shess): GTK has this as a member var, figure out why.
// [Could it be to not change if no change? If so, I'm guessing
// AppKit may already handle that.]
- const connection_security::SecurityLevel security_level =
+ const SecurityStateModel::SecurityLevel security_level =
chrome_toolbar_model->GetSecurityLevel(false);
// Emphasize the scheme for security UI display purposes (if necessary).
if (!model()->user_input_in_progress() && model()->CurrentTextIsURL() &&
- scheme.is_nonempty() && (security_level != connection_security::NONE)) {
+ scheme.is_nonempty() && (security_level != SecurityStateModel::NONE)) {
NSColor* color;
- if (security_level == connection_security::EV_SECURE ||
- security_level == connection_security::SECURE) {
+ if (security_level == SecurityStateModel::EV_SECURE ||
+ security_level == SecurityStateModel::SECURE) {
color = SecureSchemeColor();
- } else if (security_level == connection_security::SECURITY_ERROR) {
+ } else if (security_level == SecurityStateModel::SECURITY_ERROR) {
color = SecurityErrorSchemeColor();
// Add a strikethrough through the scheme.
[attributedString addAttribute:NSStrikethroughStyleAttributeName
value:[NSNumber numberWithInt:NSUnderlineStyleSingle]
range:ComponentToNSRange(scheme)];
- } else if (security_level == connection_security::SECURITY_WARNING) {
+ } else if (security_level == SecurityStateModel::SECURITY_WARNING) {
color = BaseTextColor();
} else {
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698