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

Side by Side Diff: chrome/browser/ui/cocoa/passwords/update_pending_password_view_controller.mm

Issue 2808823002: MacViews: Allows the toolkit-views Manage Passwords Dialog to be used (Closed)
Patch Set: MacViews: Allows the toolkit-views Manage Passwords Dialog to be used (rebase) Created 3 years, 8 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698