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 CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_ |
6 #define CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_ | 6 #define CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 // BrowserContextKeyedService overrides: | 71 // BrowserContextKeyedService overrides: |
72 virtual void Shutdown() OVERRIDE; | 72 virtual void Shutdown() OVERRIDE; |
73 | 73 |
74 Profile* profile_; | 74 Profile* profile_; |
75 scoped_ptr<content::WebContents> contents_; | 75 scoped_ptr<content::WebContents> contents_; |
76 scoped_ptr<StartPageWebContentsDelegate> contents_delegate_; | 76 scoped_ptr<StartPageWebContentsDelegate> contents_delegate_; |
77 scoped_ptr<ProfileDestroyObserver> profile_destroy_observer_; | 77 scoped_ptr<ProfileDestroyObserver> profile_destroy_observer_; |
78 scoped_ptr<RecommendedApps> recommended_apps_; | 78 scoped_ptr<RecommendedApps> recommended_apps_; |
79 SpeechRecognitionState state_; | 79 SpeechRecognitionState state_; |
80 ObserverList<StartPageObserver> observers_; | 80 ObserverList<StartPageObserver> observers_; |
| 81 bool speech_button_toggled_manually_; |
| 82 bool speech_result_obtained_; |
81 | 83 |
82 DISALLOW_COPY_AND_ASSIGN(StartPageService); | 84 DISALLOW_COPY_AND_ASSIGN(StartPageService); |
83 }; | 85 }; |
84 | 86 |
85 } // namespace app_list | 87 } // namespace app_list |
86 | 88 |
87 #endif // CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_ | 89 #endif // CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_ |
OLD | NEW |