| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/shell/launcher_delegate_impl.h" | 5 #include "ash/shell/launcher_delegate_impl.h" |
| 6 | 6 |
| 7 #include "ash/launcher/launcher_util.h" | 7 #include "ash/launcher/launcher_util.h" |
| 8 #include "ash/shell/toplevel_window.h" | 8 #include "ash/shell/toplevel_window.h" |
| 9 #include "ash/shell/window_watcher.h" | 9 #include "ash/shell/window_watcher.h" |
| 10 #include "ash/wm/window_util.h" | 10 #include "ash/wm/window_util.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 bool LauncherDelegateImpl::ShouldShowTooltip(const ash::LauncherItem& item) { | 57 bool LauncherDelegateImpl::ShouldShowTooltip(const ash::LauncherItem& item) { |
| 58 return true; | 58 return true; |
| 59 } | 59 } |
| 60 | 60 |
| 61 void LauncherDelegateImpl::OnLauncherCreated(Launcher* launcher) { | 61 void LauncherDelegateImpl::OnLauncherCreated(Launcher* launcher) { |
| 62 } | 62 } |
| 63 | 63 |
| 64 void LauncherDelegateImpl::OnLauncherDestroyed(Launcher* launcher) { | 64 void LauncherDelegateImpl::OnLauncherDestroyed(Launcher* launcher) { |
| 65 } | 65 } |
| 66 | 66 |
| 67 bool LauncherDelegateImpl::IsPerAppLauncher() { | |
| 68 return false; | |
| 69 } | |
| 70 | |
| 71 LauncherID LauncherDelegateImpl::GetLauncherIDForAppID( | 67 LauncherID LauncherDelegateImpl::GetLauncherIDForAppID( |
| 72 const std::string& app_id) { | 68 const std::string& app_id) { |
| 73 return 0; | 69 return 0; |
| 74 } | 70 } |
| 75 | 71 |
| 76 void LauncherDelegateImpl::PinAppWithID(const std::string& app_id) { | 72 void LauncherDelegateImpl::PinAppWithID(const std::string& app_id) { |
| 77 } | 73 } |
| 78 | 74 |
| 79 bool LauncherDelegateImpl::IsAppPinned(const std::string& app_id) { | 75 bool LauncherDelegateImpl::IsAppPinned(const std::string& app_id) { |
| 80 return false; | 76 return false; |
| 81 } | 77 } |
| 82 | 78 |
| 83 void LauncherDelegateImpl::UnpinAppsWithID(const std::string& app_id) { | 79 void LauncherDelegateImpl::UnpinAppsWithID(const std::string& app_id) { |
| 84 } | 80 } |
| 85 | 81 |
| 86 } // namespace shell | 82 } // namespace shell |
| 87 } // namespace ash | 83 } // namespace ash |
| OLD | NEW |