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_item_delegate_manager.h" | 7 #include "ash/launcher/launcher_item_delegate_manager.h" |
8 #include "ash/launcher/launcher_model.h" | 8 #include "ash/launcher/launcher_model.h" |
9 #include "ash/shelf/shelf_util.h" | |
10 #include "ash/shell.h" | 9 #include "ash/shell.h" |
11 #include "ash/test/test_launcher_item_delegate.h" | 10 #include "ash/test/test_launcher_item_delegate.h" |
12 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
13 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
14 #include "grit/ash_resources.h" | 13 #include "grit/ash_resources.h" |
15 #include "ui/aura/window.h" | 14 #include "ui/aura/window.h" |
16 | 15 |
17 namespace ash { | 16 namespace ash { |
18 namespace test { | 17 namespace test { |
19 | 18 |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 109 |
111 bool TestLauncherDelegate::IsAppPinned(const std::string& app_id) { | 110 bool TestLauncherDelegate::IsAppPinned(const std::string& app_id) { |
112 return false; | 111 return false; |
113 } | 112 } |
114 | 113 |
115 void TestLauncherDelegate::UnpinAppWithID(const std::string& app_id) { | 114 void TestLauncherDelegate::UnpinAppWithID(const std::string& app_id) { |
116 } | 115 } |
117 | 116 |
118 } // namespace test | 117 } // namespace test |
119 } // namespace ash | 118 } // namespace ash |
OLD | NEW |