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 #include "chrome/browser/chromeos/input_method/candidate_window.h" | 5 #include "chrome/browser/chromeos/input_method/candidate_window.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "base/string_util.h" | 14 #include "base/string_util.h" |
15 #include "base/stringprintf.h" | 15 #include "base/stringprintf.h" |
16 #include "base/utf_string_conversions.h" | 16 #include "base/utf_string_conversions.h" |
17 #include "gfx/canvas.h" | |
18 #include "gfx/font.h" | |
19 #include "third_party/cros/chromeos_input_method_ui.h" | 17 #include "third_party/cros/chromeos_input_method_ui.h" |
| 18 #include "ui/gfx/canvas.h" |
| 19 #include "ui/gfx/font.h" |
20 #include "views/controls/label.h" | 20 #include "views/controls/label.h" |
21 #include "views/controls/textfield/textfield.h" | 21 #include "views/controls/textfield/textfield.h" |
22 #include "views/event.h" | 22 #include "views/event.h" |
23 #include "views/layout/fill_layout.h" | 23 #include "views/layout/fill_layout.h" |
24 #include "views/layout/grid_layout.h" | 24 #include "views/layout/grid_layout.h" |
25 #include "views/screen.h" | 25 #include "views/screen.h" |
26 #include "views/widget/root_view.h" | 26 #include "views/widget/root_view.h" |
27 #include "views/widget/widget.h" | 27 #include "views/widget/widget.h" |
28 #include "views/widget/widget_gtk.h" | 28 #include "views/widget/widget_gtk.h" |
29 #include "views/window/non_client_view.h" | 29 #include "views/window/non_client_view.h" |
(...skipping 1388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1418 | 1418 |
1419 CandidateWindowController::~CandidateWindowController() { | 1419 CandidateWindowController::~CandidateWindowController() { |
1420 delete impl_; | 1420 delete impl_; |
1421 } | 1421 } |
1422 | 1422 |
1423 bool CandidateWindowController::Init() { | 1423 bool CandidateWindowController::Init() { |
1424 return impl_->Init(); | 1424 return impl_->Init(); |
1425 } | 1425 } |
1426 | 1426 |
1427 } // namespace chromeos | 1427 } // namespace chromeos |
OLD | NEW |