| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <algorithm> | 5 #include <algorithm> |
| 6 | 6 |
| 7 #import "chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_pending_view_
controller.h" | 7 #import "chrome/browser/ui/cocoa/passwords/pending_password_view_controller.h" |
| 8 | 8 |
| 9 #include "base/strings/sys_string_conversions.h" | 9 #include "base/strings/sys_string_conversions.h" |
| 10 #include "chrome/browser/ui/chrome_style.h" | 10 #include "chrome/browser/ui/chrome_style.h" |
| 11 #import "chrome/browser/ui/cocoa/hover_close_button.h" | 11 #import "chrome/browser/ui/cocoa/hover_close_button.h" |
| 12 #import "chrome/browser/ui/cocoa/passwords/manage_password_item_view_controller.
h" | 12 #import "chrome/browser/ui/cocoa/passwords/passwords_list_view_controller.h" |
| 13 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" | 13 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" |
| 14 #include "chrome/grit/generated_resources.h" | 14 #include "chrome/grit/generated_resources.h" |
| 15 #include "skia/ext/skia_utils_mac.h" | 15 #include "skia/ext/skia_utils_mac.h" |
| 16 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTw
eaker.h" | 16 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTw
eaker.h" |
| 17 #import "ui/base/cocoa/controls/hyperlink_text_view.h" | 17 #import "ui/base/cocoa/controls/hyperlink_text_view.h" |
| 18 #include "ui/base/l10n/l10n_util.h" | 18 #include "ui/base/l10n/l10n_util.h" |
| 19 | 19 |
| 20 using namespace password_manager::mac::ui; | 20 using namespace password_manager::mac::ui; |
| 21 | 21 |
| 22 const SkColor kWarmWelcomeColor = SkColorSetRGB(0x64, 0x64, 0x64); | 22 const SkColor kWarmWelcomeColor = SkColorSetRGB(0x64, 0x64, 0x64); |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 | 231 |
| 232 - (NSButton*)neverButton { | 232 - (NSButton*)neverButton { |
| 233 return neverButton_.get(); | 233 return neverButton_.get(); |
| 234 } | 234 } |
| 235 | 235 |
| 236 - (NSButton*)closeButton { | 236 - (NSButton*)closeButton { |
| 237 return closeButton_.get(); | 237 return closeButton_.get(); |
| 238 } | 238 } |
| 239 | 239 |
| 240 @end | 240 @end |
| OLD | NEW |