| Index: ash/ime/candidate_view.h
|
| diff --git a/ash/ime/candidate_view.h b/ash/ime/candidate_view.h
|
| index 6f5895781b9b02b6582a2435ef8dcc70501a371d..ad316d093ec847d1f55cdb3f034eaee4f63814fb 100644
|
| --- a/ash/ime/candidate_view.h
|
| +++ b/ash/ime/candidate_view.h
|
| @@ -33,6 +33,8 @@ class ASH_EXPORT CandidateView : public views::CustomButton {
|
| // Sets infolist icon.
|
| void SetInfolistIcon(bool enable);
|
|
|
| + void SetHighlighted(bool highlighted);
|
| +
|
| private:
|
| friend class CandidateWindowViewTest;
|
| FRIEND_TEST_ALL_PREFIXES(CandidateWindowViewTest, ShortcutSettingTest);
|
| @@ -57,12 +59,12 @@ class ASH_EXPORT CandidateView : public views::CustomButton {
|
| views::Label* candidate_label_;
|
| // The annotation label renders annotations.
|
| views::Label* annotation_label_;
|
| + // The infolist icon.
|
| + views::View* infolist_icon_;
|
|
|
| int shortcut_width_;
|
| int candidate_width_;
|
| -
|
| - // The infolist icon.
|
| - views::View* infolist_icon_;
|
| + bool highlighted_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(CandidateView);
|
| };
|
|
|