| 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 #import "chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_manage_view_c
ontroller.h" | 5 #import "chrome/browser/ui/cocoa/passwords/manage_passwords_view_controller.h" |
| 6 | 6 |
| 7 #include <cmath> | 7 #include <cmath> |
| 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/passwords/manage_password_item_view_controller.
h" | 11 #import "chrome/browser/ui/cocoa/passwords/passwords_list_view_controller.h" |
| 12 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" | 12 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" |
| 13 #include "grit/generated_resources.h" | 13 #include "grit/generated_resources.h" |
| 14 #include "skia/ext/skia_utils_mac.h" | 14 #include "skia/ext/skia_utils_mac.h" |
| 15 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTw
eaker.h" | 15 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTw
eaker.h" |
| 16 #import "ui/base/cocoa/controls/hyperlink_button_cell.h" | 16 #import "ui/base/cocoa/controls/hyperlink_button_cell.h" |
| 17 #include "ui/base/l10n/l10n_util.h" | 17 #include "ui/base/l10n/l10n_util.h" |
| 18 | 18 |
| 19 using namespace password_manager::mac::ui; | 19 using namespace password_manager::mac::ui; |
| 20 | 20 |
| 21 @implementation NoPasswordsView | 21 @implementation NoPasswordsView |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 178 |
| 179 - (NoPasswordsView*)noPasswordsView { | 179 - (NoPasswordsView*)noPasswordsView { |
| 180 return noPasswordsView_.get(); | 180 return noPasswordsView_.get(); |
| 181 } | 181 } |
| 182 | 182 |
| 183 - (PasswordsListViewController*)passwordsListController { | 183 - (PasswordsListViewController*)passwordsListController { |
| 184 return passwordsListController_.get(); | 184 return passwordsListController_.get(); |
| 185 } | 185 } |
| 186 | 186 |
| 187 @end | 187 @end |
| OLD | NEW |