Chromium Code Reviews| Index: chrome/browser/ui/app_list/app_list_controller.cc |
| diff --git a/chrome/browser/ui/app_list/app_list_controller.cc b/chrome/browser/ui/app_list/app_list_controller.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7dc34dac8115070c3304b5a629383de58ee8f268 |
| --- /dev/null |
| +++ b/chrome/browser/ui/app_list/app_list_controller.cc |
| @@ -0,0 +1,14 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "chrome/browser/ui/app_list/app_list_controller.h" |
| + |
| +#include "build/build_config.h" |
| + |
| +namespace app_list_controller { |
|
msw
2012/08/29 08:02:35
nit: add blank lines just inside the namespace bra
benwells
2012/08/30 06:51:30
Done.
|
| +#if !defined(OS_WIN) |
| + // Default implementation for ports which do not have this implemented. |
| + void ShowAppList() {} |
| +#endif |
| +} // namespace app_list_controller |