Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/ui/app_list/app_list_controller.h" | |
| 6 | |
| 7 #include "build/build_config.h" | |
| 8 | |
| 9 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.
| |
| 10 #if !defined(OS_WIN) | |
| 11 // Default implementation for ports which do not have this implemented. | |
| 12 void ShowAppList() {} | |
| 13 #endif | |
| 14 } // namespace app_list_controller | |
| OLD | NEW |