OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "ash/system/ime_menu/ime_list_view.h" | 5 #include "ash/system/ime_menu/ime_list_view.h" |
6 | 6 |
7 #include "ash/common/material_design/material_design_controller.h" | 7 #include "ash/material_design/material_design_controller.h" |
8 #include "ash/common/wm_shell.h" | |
9 #include "ash/resources/grit/ash_resources.h" | 8 #include "ash/resources/grit/ash_resources.h" |
10 #include "ash/strings/grit/ash_strings.h" | 9 #include "ash/strings/grit/ash_strings.h" |
11 #include "ash/system/tray/hover_highlight_view.h" | 10 #include "ash/system/tray/hover_highlight_view.h" |
12 #include "ash/system/tray/ime_info.h" | 11 #include "ash/system/tray/ime_info.h" |
13 #include "ash/system/tray/system_menu_button.h" | 12 #include "ash/system/tray/system_menu_button.h" |
14 #include "ash/system/tray/system_tray_delegate.h" | 13 #include "ash/system/tray/system_tray_delegate.h" |
15 #include "ash/system/tray/tray_constants.h" | 14 #include "ash/system/tray/tray_constants.h" |
16 #include "ash/system/tray/tray_details_view.h" | 15 #include "ash/system/tray/tray_details_view.h" |
17 #include "ash/system/tray/tray_popup_header_button.h" | 16 #include "ash/system/tray/tray_popup_header_button.h" |
18 #include "ash/system/tray/tray_popup_item_style.h" | 17 #include "ash/system/tray/tray_popup_item_style.h" |
19 #include "ash/system/tray/tray_popup_utils.h" | 18 #include "ash/system/tray/tray_popup_utils.h" |
20 #include "ash/system/tray/tri_view.h" | 19 #include "ash/system/tray/tri_view.h" |
| 20 #include "ash/wm_shell.h" |
21 #include "ui/accessibility/ax_node_data.h" | 21 #include "ui/accessibility/ax_node_data.h" |
22 #include "ui/base/l10n/l10n_util.h" | 22 #include "ui/base/l10n/l10n_util.h" |
23 #include "ui/base/resource/resource_bundle.h" | 23 #include "ui/base/resource/resource_bundle.h" |
24 #include "ui/gfx/color_palette.h" | 24 #include "ui/gfx/color_palette.h" |
25 #include "ui/gfx/paint_vector_icon.h" | 25 #include "ui/gfx/paint_vector_icon.h" |
26 #include "ui/gfx/vector_icons_public.h" | 26 #include "ui/gfx/vector_icons_public.h" |
27 #include "ui/keyboard/keyboard_util.h" | 27 #include "ui/keyboard/keyboard_util.h" |
28 #include "ui/views/background.h" | 28 #include "ui/views/background.h" |
29 #include "ui/views/border.h" | 29 #include "ui/views/border.h" |
30 #include "ui/views/controls/button/toggle_button.h" | 30 #include "ui/views/controls/button/toggle_button.h" |
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 ImeListViewTestApi::ImeListViewTestApi(ImeListView* ime_list_view) | 460 ImeListViewTestApi::ImeListViewTestApi(ImeListView* ime_list_view) |
461 : ime_list_view_(ime_list_view) {} | 461 : ime_list_view_(ime_list_view) {} |
462 | 462 |
463 ImeListViewTestApi::~ImeListViewTestApi() {} | 463 ImeListViewTestApi::~ImeListViewTestApi() {} |
464 | 464 |
465 views::View* ImeListViewTestApi::GetToggleView() const { | 465 views::View* ImeListViewTestApi::GetToggleView() const { |
466 return ime_list_view_->material_keyboard_status_view_->toggle(); | 466 return ime_list_view_->material_keyboard_status_view_->toggle(); |
467 } | 467 } |
468 | 468 |
469 } // namespace ash | 469 } // namespace ash |
OLD | NEW |