Index: chrome/browser/ui/app_list/app_list_service_win.h |
diff --git a/chrome/browser/ui/app_list/app_list_service_win.h b/chrome/browser/ui/app_list/app_list_service_win.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0ac6a3ced1cefe196162e66ef893b61c0ae86fa4 |
--- /dev/null |
+++ b/chrome/browser/ui/app_list/app_list_service_win.h |
@@ -0,0 +1,19 @@ |
+// Copyright 2013 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. |
+ |
+#ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_WIN_H_ |
+#define CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_WIN_H_ |
+ |
+#include "chrome/browser/ui/app_list/app_list_service.h" |
+ |
+class AppListServiceWin : public AppListService { |
+ public: |
+ static AppListServiceWin* GetInstance(); |
koz (OOO until 15th September)
2013/02/19 03:55:14
nit: newlines before protected: and private:.
tapted
2013/02/19 04:25:21
Done.
|
+ protected: |
+ AppListServiceWin() {} |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(AppListServiceWin); |
+}; |
+ |
+#endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_SERVICE_WIN_H_ |