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 #ifndef CHROME_BROWSER_UI_PASSWORDS_SAVE_PASSWORD_REFUSAL_COMBOBOX_MODEL_H_ | 5 #ifndef CHROME_BROWSER_UI_PASSWORDS_SAVE_PASSWORD_REFUSAL_COMBOBOX_MODEL_H_ |
6 #define CHROME_BROWSER_UI_PASSWORDS_SAVE_PASSWORD_REFUSAL_COMBOBOX_MODEL_H_ | 6 #define CHROME_BROWSER_UI_PASSWORDS_SAVE_PASSWORD_REFUSAL_COMBOBOX_MODEL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "ui/base/models/combobox_model.h" | 11 #include "ui/base/models/combobox_model.h" |
12 | 12 |
13 class SavePasswordRefusalComboboxModel : public ui::ComboboxModel { | 13 class SavePasswordRefusalComboboxModel : public ui::ComboboxModel { |
14 public: | 14 public: |
15 enum { INDEX_NOPE = 0, INDEX_NEVER_FOR_THIS_SITE = 1 }; | 15 explicit SavePasswordRefusalComboboxModel(bool never_is_default); |
16 | |
17 SavePasswordRefusalComboboxModel(); | |
18 ~SavePasswordRefusalComboboxModel() override; | 16 ~SavePasswordRefusalComboboxModel() override; |
19 | 17 |
20 private: | 18 int index_nope() const { |
| 19 return never_is_default_ ? 1 : 0; |
| 20 } |
| 21 |
| 22 int index_never() const { |
| 23 return never_is_default_ ? 0 : 1; |
| 24 } |
| 25 |
21 // Overridden from ui::ComboboxModel: | 26 // Overridden from ui::ComboboxModel: |
22 int GetItemCount() const override; | 27 int GetItemCount() const override; |
23 base::string16 GetItemAt(int index) override; | 28 base::string16 GetItemAt(int index) override; |
24 bool IsItemSeparatorAt(int index) override; | 29 bool IsItemSeparatorAt(int index) override; |
25 int GetDefaultIndex() const override; | 30 int GetDefaultIndex() const override; |
26 | 31 |
| 32 private: |
27 std::vector<base::string16> items_; | 33 std::vector<base::string16> items_; |
| 34 const bool never_is_default_; |
28 | 35 |
29 DISALLOW_COPY_AND_ASSIGN(SavePasswordRefusalComboboxModel); | 36 DISALLOW_COPY_AND_ASSIGN(SavePasswordRefusalComboboxModel); |
30 }; | 37 }; |
31 | 38 |
32 | 39 |
33 #endif // CHROME_BROWSER_UI_PASSWORDS_SAVE_PASSWORD_REFUSAL_COMBOBOX_MODEL_H_ | 40 #endif // CHROME_BROWSER_UI_PASSWORDS_SAVE_PASSWORD_REFUSAL_COMBOBOX_MODEL_H_ |
OLD | NEW |