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

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

Issue 60323007: Moved app_list_service_linux to chrome/browser/ui/views. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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_service_linux.cc
diff --git a/chrome/browser/ui/app_list/app_list_service_linux.cc b/chrome/browser/ui/app_list/app_list_service_linux.cc
deleted file mode 100644
index 8487c8edab9536f52f7cbb0db854338cad7677a4..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/app_list/app_list_service_linux.cc
+++ /dev/null
@@ -1,67 +0,0 @@
-// 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.
-
-#include "chrome/browser/ui/app_list/app_list_service_linux.h"
-
-#include "base/memory/singleton.h"
-
-AppListServiceLinux::~AppListServiceLinux() {}
-
-// static
-AppListServiceLinux* AppListServiceLinux::GetInstance() {
- return Singleton<AppListServiceLinux,
- LeakySingletonTraits<AppListServiceLinux> >::get();
-}
-
-void AppListServiceLinux::Init(Profile* initial_profile) {
- HandleCommandLineFlags(initial_profile);
-}
-
-void AppListServiceLinux::CreateForProfile(Profile* requested_profile) {
- NOTIMPLEMENTED();
-}
-
-void AppListServiceLinux::ShowForProfile(Profile* requested_profile) {
- NOTIMPLEMENTED();
-}
-
-void AppListServiceLinux::DismissAppList() {
- NOTIMPLEMENTED();
-}
-
-bool AppListServiceLinux::IsAppListVisible() const {
- NOTIMPLEMENTED();
- return false;
-}
-
-gfx::NativeWindow AppListServiceLinux::GetAppListWindow() {
- NOTIMPLEMENTED();
- return gfx::NativeWindow();
-}
-
-Profile* AppListServiceLinux::GetCurrentAppListProfile() {
- NOTIMPLEMENTED();
- return NULL;
-}
-
-AppListControllerDelegate* AppListServiceLinux::CreateControllerDelegate() {
- NOTIMPLEMENTED();
- return NULL;
-}
-
-void AppListServiceLinux::CreateShortcut() {
- NOTIMPLEMENTED();
-}
-
-AppListServiceLinux::AppListServiceLinux() {}
-
-// static
-AppListService* AppListService::Get(chrome::HostDesktopType desktop_type) {
- return AppListServiceLinux::GetInstance();
-}
-
-// static
-void AppListService::InitAll(Profile* initial_profile) {
- AppListServiceLinux::GetInstance()->Init(initial_profile);
-}

Powered by Google App Engine
This is Rietveld 408576698