OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROMEOS_INPUT_METHOD_CANDIDATE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_VIEW_H_ |
7 | 7 |
8 #include "base/gtest_prod_util.h" | 8 #include "base/gtest_prod_util.h" |
9 #include "chrome/browser/chromeos/input_method/ibus_ui_controller.h" | |
10 #include "chromeos/dbus/ibus/ibus_lookup_table.h" | 9 #include "chromeos/dbus/ibus/ibus_lookup_table.h" |
11 #include "ui/views/controls/label.h" | 10 #include "ui/views/controls/label.h" |
12 #include "ui/views/view.h" | 11 #include "ui/views/view.h" |
13 | 12 |
14 namespace chromeos { | 13 namespace chromeos { |
15 namespace input_method { | 14 namespace input_method { |
16 | 15 |
17 class CandidateWindowView; | 16 class CandidateWindowView; |
18 | 17 |
19 // CandidateView renderes a row of a candidate. | 18 // CandidateView renderes a row of a candidate. |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 views::View* infolist_icon_; | 89 views::View* infolist_icon_; |
91 bool infolist_icon_enabled_; | 90 bool infolist_icon_enabled_; |
92 | 91 |
93 DISALLOW_COPY_AND_ASSIGN(CandidateView); | 92 DISALLOW_COPY_AND_ASSIGN(CandidateView); |
94 }; | 93 }; |
95 | 94 |
96 } // namespace input_method | 95 } // namespace input_method |
97 } // namespace chromeos | 96 } // namespace chromeos |
98 | 97 |
99 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_VIEW_H_ | 98 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_VIEW_H_ |
OLD | NEW |