| 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 "chrome/browser/ui/app_list/app_list_controller.h" | 5 #include "chrome/browser/ui/app_list/app_list_controller.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 AppListControllerDelegate::~AppListControllerDelegate() {} | 10 AppListControllerDelegate::~AppListControllerDelegate() {} |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 void AppListControllerDelegate::CreateNewWindow(bool incognito) { | 28 void AppListControllerDelegate::CreateNewWindow(bool incognito) { |
| 29 NOTREACHED(); | 29 NOTREACHED(); |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace app_list_controller { | 32 namespace app_list_controller { |
| 33 | 33 |
| 34 #if !defined(OS_WIN) | 34 #if !defined(OS_WIN) |
| 35 // Default implementation for ports which do not have this implemented. | 35 // Default implementation for ports which do not have this implemented. |
| 36 void ShowAppList() {} | 36 void ShowAppList() {} |
| 37 |
| 38 // Default implementation for ports which do not have this implemented. |
| 39 void CheckAppListTaskbarShortcut() {} |
| 37 #endif | 40 #endif |
| 38 | 41 |
| 39 } // namespace app_list_controller | 42 } // namespace app_list_controller |
| OLD | NEW |