| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 bool auto_launch, | 65 bool auto_launch, |
| 66 int event_flags) override; | 66 int event_flags) override; |
| 67 void InvokeSearchResultAction(SearchResult* result, | 67 void InvokeSearchResultAction(SearchResult* result, |
| 68 int action_index, | 68 int action_index, |
| 69 int event_flags) override {} | 69 int event_flags) override {} |
| 70 base::TimeDelta GetAutoLaunchTimeout() override; | 70 base::TimeDelta GetAutoLaunchTimeout() override; |
| 71 void AutoLaunchCanceled() override; | 71 void AutoLaunchCanceled() override; |
| 72 void ViewInitialized() override {} | 72 void ViewInitialized() override {} |
| 73 void Dismiss() override; | 73 void Dismiss() override; |
| 74 void ViewClosing() override {} | 74 void ViewClosing() override {} |
| 75 void OpenSettings() override {} | |
| 76 void OpenHelp() override {} | 75 void OpenHelp() override {} |
| 77 void OpenFeedback() override {} | 76 void OpenFeedback() override {} |
| 78 void StartSpeechRecognition() override {} | 77 void StartSpeechRecognition() override {} |
| 79 void StopSpeechRecognition() override; | 78 void StopSpeechRecognition() override; |
| 80 void ShowForProfileByPath(const base::FilePath& profile_path) override {} | 79 void ShowForProfileByPath(const base::FilePath& profile_path) override {} |
| 81 #if defined(TOOLKIT_VIEWS) | 80 #if defined(TOOLKIT_VIEWS) |
| 82 views::View* CreateStartPageWebView(const gfx::Size& size) override; | 81 views::View* CreateStartPageWebView(const gfx::Size& size) override; |
| 83 std::vector<views::View*> CreateCustomPageWebViews( | 82 std::vector<views::View*> CreateCustomPageWebViews( |
| 84 const gfx::Size& size) override; | 83 const gfx::Size& size) override; |
| 85 void CustomLauncherPageAnimationChanged(double progress) override {} | 84 void CustomLauncherPageAnimationChanged(double progress) override {} |
| (...skipping 23 matching lines...) Expand all Loading... |
| 109 SpeechUIModel speech_ui_; | 108 SpeechUIModel speech_ui_; |
| 110 base::TimeDelta auto_launch_timeout_; | 109 base::TimeDelta auto_launch_timeout_; |
| 111 | 110 |
| 112 DISALLOW_COPY_AND_ASSIGN(AppListTestViewDelegate); | 111 DISALLOW_COPY_AND_ASSIGN(AppListTestViewDelegate); |
| 113 }; | 112 }; |
| 114 | 113 |
| 115 } // namespace test | 114 } // namespace test |
| 116 } // namespace app_list | 115 } // namespace app_list |
| 117 | 116 |
| 118 #endif // UI_APP_LIST_TEST_APP_LIST_TEST_VIEW_DELEGATE_H_ | 117 #endif // UI_APP_LIST_TEST_APP_LIST_TEST_VIEW_DELEGATE_H_ |
| OLD | NEW |