| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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/update_pending_password_view_controll
er.h" | 5 #import "chrome/browser/ui/cocoa/passwords/update_pending_password_view_controll
er.h" |
| 6 | 6 |
| 7 #import "chrome/browser/ui/cocoa/passwords/credentials_selection_view.h" | 7 #import "chrome/browser/ui/cocoa/passwords/credentials_selection_view_cocoa.h" |
| 8 #import "chrome/browser/ui/cocoa/passwords/passwords_list_view_controller.h" | 8 #import "chrome/browser/ui/cocoa/passwords/passwords_list_view_controller.h" |
| 9 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" | 9 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" |
| 10 #include "chrome/grit/generated_resources.h" | 10 #include "chrome/grit/generated_resources.h" |
| 11 #include "ui/base/l10n/l10n_util.h" | 11 #include "ui/base/l10n/l10n_util.h" |
| 12 | 12 |
| 13 @interface UpdatePendingPasswordViewController () | 13 @interface UpdatePendingPasswordViewController () |
| 14 - (void)onUpdateClicked:(id)sender; | 14 - (void)onUpdateClicked:(id)sender; |
| 15 - (void)onNopeClicked:(id)sender; | 15 - (void)onNopeClicked:(id)sender; |
| 16 @end | 16 @end |
| 17 | 17 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 80 |
| 81 - (NSButton*)updateButton { | 81 - (NSButton*)updateButton { |
| 82 return updateButton_.get(); | 82 return updateButton_.get(); |
| 83 } | 83 } |
| 84 | 84 |
| 85 - (NSButton*)noButton { | 85 - (NSButton*)noButton { |
| 86 return nopeButton_.get(); | 86 return nopeButton_.get(); |
| 87 } | 87 } |
| 88 | 88 |
| 89 @end | 89 @end |
| OLD | NEW |