OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "ui/app_list/test/app_list_test_view_delegate.h" | 5 #include "ui/app_list/test/app_list_test_view_delegate.h" |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "ui/gfx/image/image_skia.h" | 9 #include "ui/gfx/image/image_skia.h" |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 } | 33 } |
34 | 34 |
35 gfx::ImageSkia AppListTestViewDelegate::GetWindowIcon() { | 35 gfx::ImageSkia AppListTestViewDelegate::GetWindowIcon() { |
36 return gfx::ImageSkia(); | 36 return gfx::ImageSkia(); |
37 } | 37 } |
38 | 38 |
39 content::WebContents* AppListTestViewDelegate::GetStartPageContents() { | 39 content::WebContents* AppListTestViewDelegate::GetStartPageContents() { |
40 return NULL; | 40 return NULL; |
41 } | 41 } |
42 | 42 |
| 43 const AppListViewDelegate::Users& AppListTestViewDelegate::GetUsers() const { |
| 44 return users_; |
| 45 } |
| 46 |
43 } // namespace test | 47 } // namespace test |
44 } // namespace app_list | 48 } // namespace app_list |
OLD | NEW |