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 #ifndef UI_APP_LIST_TEST_APP_LIST_TEST_VIEW_DELEGATE_H | 5 #ifndef UI_APP_LIST_TEST_APP_LIST_TEST_VIEW_DELEGATE_H |
6 #define UI_APP_LIST_TEST_APP_LIST_TEST_VIEW_DELEGATE_H | 6 #define UI_APP_LIST_TEST_APP_LIST_TEST_VIEW_DELEGATE_H |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "ui/app_list/app_list_view_delegate.h" | 9 #include "ui/app_list/app_list_view_delegate.h" |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 virtual void InvokeSearchResultAction(const SearchResult& result, | 33 virtual void InvokeSearchResultAction(const SearchResult& result, |
34 int action_index, | 34 int action_index, |
35 int event_flags) OVERRIDE {} | 35 int event_flags) OVERRIDE {} |
36 virtual void Dismiss() OVERRIDE; | 36 virtual void Dismiss() OVERRIDE; |
37 virtual void ViewClosing() OVERRIDE {} | 37 virtual void ViewClosing() OVERRIDE {} |
38 virtual void ViewActivationChanged(bool active) OVERRIDE {} | 38 virtual void ViewActivationChanged(bool active) OVERRIDE {} |
39 virtual gfx::ImageSkia GetWindowIcon() OVERRIDE; | 39 virtual gfx::ImageSkia GetWindowIcon() OVERRIDE; |
40 virtual string16 GetCurrentUserName() OVERRIDE; | 40 virtual string16 GetCurrentUserName() OVERRIDE; |
41 virtual string16 GetCurrentUserEmail() OVERRIDE; | 41 virtual string16 GetCurrentUserEmail() OVERRIDE; |
42 virtual void OpenSettings() OVERRIDE {} | 42 virtual void OpenSettings() OVERRIDE {} |
| 43 virtual void OpenHelp() OVERRIDE {} |
43 virtual void OpenFeedback() OVERRIDE {} | 44 virtual void OpenFeedback() OVERRIDE {} |
44 | 45 |
45 private: | 46 private: |
46 int activate_count_; | 47 int activate_count_; |
47 int dismiss_count_; | 48 int dismiss_count_; |
48 AppListItemModel* last_activated_; | 49 AppListItemModel* last_activated_; |
49 }; | 50 }; |
50 | 51 |
51 } // namespace test | 52 } // namespace test |
52 } // namespace app_list | 53 } // namespace app_list |
53 | 54 |
54 #endif // UI_APP_LIST_TEST_APP_LIST_TEST_VIEW_DELEGATE_H | 55 #endif // UI_APP_LIST_TEST_APP_LIST_TEST_VIEW_DELEGATE_H |
OLD | NEW |