Chromium Code Reviews| 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 #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 Loading... | |
| 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_ |
| OLD | NEW |