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 "ui/gfx/image/image_skia.h" | 7 #include "ui/gfx/image/image_skia.h" |
8 | 8 |
9 namespace app_list { | 9 namespace app_list { |
10 namespace test { | 10 namespace test { |
(...skipping 17 matching lines...) Expand all Loading... |
28 } | 28 } |
29 | 29 |
30 void AppListTestViewDelegate::Dismiss() { | 30 void AppListTestViewDelegate::Dismiss() { |
31 ++dismiss_count_; | 31 ++dismiss_count_; |
32 } | 32 } |
33 | 33 |
34 gfx::ImageSkia AppListTestViewDelegate::GetWindowIcon() { | 34 gfx::ImageSkia AppListTestViewDelegate::GetWindowIcon() { |
35 return gfx::ImageSkia(); | 35 return gfx::ImageSkia(); |
36 } | 36 } |
37 | 37 |
| 38 string16 AppListTestViewDelegate::GetCurrentUserName() { |
| 39 return string16(); |
| 40 } |
| 41 |
| 42 string16 AppListTestViewDelegate::GetCurrentUserEmail() { |
| 43 return string16(); |
| 44 } |
| 45 |
38 } // namespace test | 46 } // namespace test |
39 } // namespace app_list | 47 } // namespace app_list |
OLD | NEW |