| 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/ime/ime_switch_type.h" | 7 #include "ash/ime/ime_switch_type.h" |
| 8 #include "ash/resources/grit/ash_resources.h" | |
| 9 #include "ash/resources/vector_icons/vector_icons.h" | 8 #include "ash/resources/vector_icons/vector_icons.h" |
| 10 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 11 #include "ash/shell_port.h" | 10 #include "ash/shell_port.h" |
| 12 #include "ash/strings/grit/ash_strings.h" | 11 #include "ash/strings/grit/ash_strings.h" |
| 13 #include "ash/system/tray/actionable_view.h" | 12 #include "ash/system/tray/actionable_view.h" |
| 14 #include "ash/system/tray/ime_info.h" | 13 #include "ash/system/tray/ime_info.h" |
| 15 #include "ash/system/tray/system_menu_button.h" | 14 #include "ash/system/tray/system_menu_button.h" |
| 16 #include "ash/system/tray/system_tray_delegate.h" | 15 #include "ash/system/tray/system_tray_delegate.h" |
| 17 #include "ash/system/tray/tray_constants.h" | 16 #include "ash/system/tray/tray_constants.h" |
| 18 #include "ash/system/tray/tray_details_view.h" | 17 #include "ash/system/tray/tray_details_view.h" |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 ImeListViewTestApi::ImeListViewTestApi(ImeListView* ime_list_view) | 362 ImeListViewTestApi::ImeListViewTestApi(ImeListView* ime_list_view) |
| 364 : ime_list_view_(ime_list_view) {} | 363 : ime_list_view_(ime_list_view) {} |
| 365 | 364 |
| 366 ImeListViewTestApi::~ImeListViewTestApi() {} | 365 ImeListViewTestApi::~ImeListViewTestApi() {} |
| 367 | 366 |
| 368 views::View* ImeListViewTestApi::GetToggleView() const { | 367 views::View* ImeListViewTestApi::GetToggleView() const { |
| 369 return ime_list_view_->keyboard_status_row_->toggle(); | 368 return ime_list_view_->keyboard_status_row_->toggle(); |
| 370 } | 369 } |
| 371 | 370 |
| 372 } // namespace ash | 371 } // namespace ash |
| OLD | NEW |