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

Side by Side Diff: chrome/browser/ui/views/passwords/credentials_selection_view_views.h

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 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 #ifndef CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ 4 #ifndef CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_VIEWS_H_
tapted 2017/04/11 07:48:58 I think this rename was due to a duplicate object
varkha 2017/04/12 01:57:28 Done.
5 #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ 5 #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_VIEWS_H_
6 6
7 #include <memory> 7 #include <memory>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "components/autofill/core/common/password_form.h" 11 #include "components/autofill/core/common/password_form.h"
12 #include "ui/views/view.h" 12 #include "ui/views/view.h"
13 13
14 namespace views { 14 namespace views {
15 class Combobox; 15 class Combobox;
(...skipping 23 matching lines...) Expand all
39 std::unique_ptr<views::Combobox> combobox_; 39 std::unique_ptr<views::Combobox> combobox_;
40 std::unique_ptr<ui::SimpleComboboxModel> combobox_model_; 40 std::unique_ptr<ui::SimpleComboboxModel> combobox_model_;
41 int default_index_; 41 int default_index_;
42 bool is_default_best_match_; 42 bool is_default_best_match_;
43 bool is_default_preferred_; 43 bool is_default_preferred_;
44 bool action_reported_; 44 bool action_reported_;
45 45
46 DISALLOW_COPY_AND_ASSIGN(CredentialsSelectionView); 46 DISALLOW_COPY_AND_ASSIGN(CredentialsSelectionView);
47 }; 47 };
48 48
49 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ 49 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_VIEWS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698