OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_WINDOW_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_VIEW_H_ |
7 | 7 |
8 #include "chrome/browser/chromeos/input_method/ibus_ui_controller.h" | 8 #include "chrome/browser/chromeos/input_method/ibus_ui_controller.h" |
9 #include "views/view.h" | 9 #include "ui/views/view.h" |
10 | 10 |
11 namespace chromeos { | 11 namespace chromeos { |
12 namespace input_method { | 12 namespace input_method { |
13 | 13 |
14 class CandidateView; | 14 class CandidateView; |
15 class InformationTextArea; | 15 class InformationTextArea; |
16 class HidableArea; | 16 class HidableArea; |
17 | 17 |
18 // CandidateWindowView is the main container of the candidate window UI. | 18 // CandidateWindowView is the main container of the candidate window UI. |
19 class CandidateWindowView : public views::View { | 19 class CandidateWindowView : public views::View { |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 // The last cursor location. | 177 // The last cursor location. |
178 gfx::Rect cursor_location_; | 178 gfx::Rect cursor_location_; |
179 | 179 |
180 DISALLOW_COPY_AND_ASSIGN(CandidateWindowView); | 180 DISALLOW_COPY_AND_ASSIGN(CandidateWindowView); |
181 }; | 181 }; |
182 | 182 |
183 } // namespace input_method | 183 } // namespace input_method |
184 } // namespace chromeos | 184 } // namespace chromeos |
185 | 185 |
186 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_VIEW_H_ | 186 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_VIEW_H_ |
OLD | NEW |