Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7646)

Unified Diff: chrome/browser/ui/app_list/app_list_controller.cc

Issue 10900018: Introduce App Launcher for Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698