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 #include "ui/chromeos/ime/infolist_window.h" | 5 #include "ui/chromeos/ime/infolist_window.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include <string> | 9 #include <string> |
8 #include <vector> | 10 #include <vector> |
9 | 11 |
10 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/macros.h" |
11 #include "ui/base/l10n/l10n_util.h" | 14 #include "ui/base/l10n/l10n_util.h" |
12 #include "ui/chromeos/ime/candidate_window_constants.h" | 15 #include "ui/chromeos/ime/candidate_window_constants.h" |
13 #include "ui/chromeos/strings/grit/ui_chromeos_strings.h" | 16 #include "ui/chromeos/strings/grit/ui_chromeos_strings.h" |
14 #include "ui/gfx/color_utils.h" | 17 #include "ui/gfx/color_utils.h" |
15 #include "ui/native_theme/native_theme.h" | 18 #include "ui/native_theme/native_theme.h" |
16 #include "ui/views/background.h" | 19 #include "ui/views/background.h" |
17 #include "ui/views/border.h" | 20 #include "ui/views/border.h" |
18 #include "ui/views/bubble/bubble_border.h" | 21 #include "ui/views/bubble/bubble_border.h" |
19 #include "ui/views/bubble/bubble_frame_view.h" | 22 #include "ui/views/bubble/bubble_frame_view.h" |
20 #include "ui/views/controls/label.h" | 23 #include "ui/views/controls/label.h" |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 const char* InfolistWindow::GetClassName() const { | 278 const char* InfolistWindow::GetClassName() const { |
276 return "InfolistWindow"; | 279 return "InfolistWindow"; |
277 } | 280 } |
278 | 281 |
279 void InfolistWindow::WindowClosing() { | 282 void InfolistWindow::WindowClosing() { |
280 show_hide_timer_.Stop(); | 283 show_hide_timer_.Stop(); |
281 } | 284 } |
282 | 285 |
283 } // namespace ime | 286 } // namespace ime |
284 } // namespace ui | 287 } // namespace ui |
OLD | NEW |