| Index: ui/app_list/test/app_list_test_view_delegate.h
|
| diff --git a/ui/app_list/test/app_list_test_view_delegate.h b/ui/app_list/test/app_list_test_view_delegate.h
|
| index 18bf3ffb797b7a8bb8e7fb9a9cacf4f9509760b4..6045dbd7003542f8bed5c55d962fe54c385f2b2b 100644
|
| --- a/ui/app_list/test/app_list_test_view_delegate.h
|
| +++ b/ui/app_list/test/app_list_test_view_delegate.h
|
| @@ -32,6 +32,10 @@ class AppListTestViewDelegate : public AppListViewDelegate {
|
| users_ = users;
|
| }
|
|
|
| + void set_auto_launch_timeout(const base::TimeDelta& timeout) {
|
| + auto_launch_timeout_ = timeout;
|
| + }
|
| +
|
| // Sets the signin status of the signin delegate, creating one if there isn't
|
| // one already.
|
| void SetSignedIn(bool signed_in);
|
| @@ -53,7 +57,7 @@ class AppListTestViewDelegate : public AppListViewDelegate {
|
| int action_index,
|
| int event_flags) OVERRIDE {}
|
| virtual base::TimeDelta GetAutoLaunchTimeout() OVERRIDE;
|
| - virtual void AutoLaunchCanceled() OVERRIDE {}
|
| + virtual void AutoLaunchCanceled() OVERRIDE;
|
| virtual void ViewInitialized() OVERRIDE {}
|
| virtual void Dismiss() OVERRIDE;
|
| virtual void ViewClosing() OVERRIDE {}
|
| @@ -84,6 +88,7 @@ class AppListTestViewDelegate : public AppListViewDelegate {
|
| scoped_ptr<AppListTestModel> model_;
|
| ObserverList<AppListViewDelegateObserver> observers_;
|
| SpeechUIModel speech_ui_;
|
| + base::TimeDelta auto_launch_timeout_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AppListTestViewDelegate);
|
| };
|
|
|