| 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/test/test_launcher_delegate.h" | 5 #include "ash/test/test_launcher_delegate.h" |
| 6 | 6 |
| 7 #include "ash/launcher/launcher_model.h" | 7 #include "ash/launcher/launcher_model.h" |
| 8 #include "ash/launcher/launcher_util.h" | 8 #include "ash/launcher/launcher_util.h" |
| 9 #include "ash/wm/window_util.h" | 9 #include "ash/wm/window_util.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 void TestLauncherDelegate::PinAppWithID(const std::string& app_id) { | 138 void TestLauncherDelegate::PinAppWithID(const std::string& app_id) { |
| 139 } | 139 } |
| 140 | 140 |
| 141 bool TestLauncherDelegate::IsAppPinned(const std::string& app_id) { | 141 bool TestLauncherDelegate::IsAppPinned(const std::string& app_id) { |
| 142 return false; | 142 return false; |
| 143 } | 143 } |
| 144 | 144 |
| 145 void TestLauncherDelegate::UnpinAppsWithID(const std::string& app_id) { | 145 void TestLauncherDelegate::UnpinAppsWithID(const std::string& app_id) { |
| 146 } | 146 } |
| 147 | 147 |
| 148 LauncherItemDelegate* TestLauncherDelegate::GetLauncherItemDelegate( |
| 149 const LauncherItem& item) { |
| 150 return this; |
| 151 } |
| 152 |
| 148 } // namespace test | 153 } // namespace test |
| 149 } // namespace ash | 154 } // namespace ash |
| OLD | NEW |