| 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/callback_forward.h" | 8 #include "base/callback_forward.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "ui/app_list/app_list_view_delegate.h" | 10 #include "ui/app_list/app_list_view_delegate.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 int event_flags) OVERRIDE {} | 41 int event_flags) OVERRIDE {} |
| 42 virtual void InvokeSearchResultAction(SearchResult* result, | 42 virtual void InvokeSearchResultAction(SearchResult* result, |
| 43 int action_index, | 43 int action_index, |
| 44 int event_flags) OVERRIDE {} | 44 int event_flags) OVERRIDE {} |
| 45 virtual void Dismiss() OVERRIDE; | 45 virtual void Dismiss() OVERRIDE; |
| 46 virtual void ViewClosing() OVERRIDE {} | 46 virtual void ViewClosing() OVERRIDE {} |
| 47 virtual gfx::ImageSkia GetWindowIcon() OVERRIDE; | 47 virtual gfx::ImageSkia GetWindowIcon() OVERRIDE; |
| 48 virtual void OpenSettings() OVERRIDE {} | 48 virtual void OpenSettings() OVERRIDE {} |
| 49 virtual void OpenHelp() OVERRIDE {} | 49 virtual void OpenHelp() OVERRIDE {} |
| 50 virtual void OpenFeedback() OVERRIDE {} | 50 virtual void OpenFeedback() OVERRIDE {} |
| 51 virtual void OnRightButtonClicked() OVERRIDE {} |
| 51 virtual void ShowForProfileByPath( | 52 virtual void ShowForProfileByPath( |
| 52 const base::FilePath& profile_path) OVERRIDE {}; | 53 const base::FilePath& profile_path) OVERRIDE {}; |
| 53 virtual content::WebContents* GetStartPageContents() OVERRIDE; | 54 virtual content::WebContents* GetStartPageContents() OVERRIDE; |
| 54 virtual const Users& GetUsers() const OVERRIDE; | 55 virtual const Users& GetUsers() const OVERRIDE; |
| 55 | 56 |
| 56 private: | 57 private: |
| 57 int dismiss_count_; | 58 int dismiss_count_; |
| 58 Users users_; | 59 Users users_; |
| 59 SigninDelegate* test_signin_delegate_; // Weak. Owned by test. | 60 SigninDelegate* test_signin_delegate_; // Weak. Owned by test. |
| 60 | 61 |
| 61 }; | 62 }; |
| 62 | 63 |
| 63 } // namespace test | 64 } // namespace test |
| 64 } // namespace app_list | 65 } // namespace app_list |
| 65 | 66 |
| 66 #endif // UI_APP_LIST_TEST_APP_LIST_TEST_VIEW_DELEGATE_H_ | 67 #endif // UI_APP_LIST_TEST_APP_LIST_TEST_VIEW_DELEGATE_H_ |
| OLD | NEW |