| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <string> | 5 #include <string> |
| 6 #include <vector> | 6 #include <vector> |
| 7 | 7 |
| 8 #include "ash/session/session_state_delegate.h" | 8 #include "ash/session/session_state_delegate.h" |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "ash/shell/example_factory.h" | 10 #include "ash/shell/example_factory.h" |
| 11 #include "ash/shell/toplevel_window.h" | 11 #include "ash/shell/toplevel_window.h" |
| 12 #include "ash/shell_delegate.h" | 12 #include "ash/shell_delegate.h" |
| 13 #include "base/basictypes.h" | |
| 14 #include "base/callback.h" | 13 #include "base/callback.h" |
| 15 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 16 #include "base/i18n/case_conversion.h" | 15 #include "base/i18n/case_conversion.h" |
| 17 #include "base/i18n/string_search.h" | 16 #include "base/i18n/string_search.h" |
| 18 #include "base/memory/scoped_vector.h" | 17 #include "base/memory/scoped_vector.h" |
| 19 #include "base/strings/string_number_conversions.h" | 18 #include "base/strings/string_number_conversions.h" |
| 20 #include "base/strings/string_util.h" | 19 #include "base/strings/string_util.h" |
| 21 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
| 22 #include "ui/app_list/app_list_item.h" | 21 #include "ui/app_list/app_list_item.h" |
| 23 #include "ui/app_list/app_list_item_list.h" | 22 #include "ui/app_list/app_list_item_list.h" |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 }; | 364 }; |
| 366 | 365 |
| 367 } // namespace | 366 } // namespace |
| 368 | 367 |
| 369 app_list::AppListViewDelegate* CreateAppListViewDelegate() { | 368 app_list::AppListViewDelegate* CreateAppListViewDelegate() { |
| 370 return new ExampleAppListViewDelegate; | 369 return new ExampleAppListViewDelegate; |
| 371 } | 370 } |
| 372 | 371 |
| 373 } // namespace shell | 372 } // namespace shell |
| 374 } // namespace ash | 373 } // namespace ash |
| OLD | NEW |