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 <stdint.h> | 8 #include <stdint.h> |
| 9 #include <string> |
9 #include <vector> | 10 #include <vector> |
10 | 11 |
11 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
12 #include "base/callback.h" | 13 #include "base/callback.h" |
13 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
16 #include "base/observer_list.h" | 17 #include "base/observer_list.h" |
17 #include "base/strings/string16.h" | 18 #include "base/strings/string16.h" |
18 #include "chrome/browser/ui/app_list/speech_recognizer_delegate.h" | 19 #include "chrome/browser/ui/app_list/speech_recognizer_delegate.h" |
19 #include "components/keyed_service/core/keyed_service.h" | 20 #include "components/keyed_service/core/keyed_service.h" |
20 #include "content/public/browser/web_contents.h" | 21 #include "content/public/browser/web_contents.h" |
21 #include "ui/app_list/speech_ui_model_observer.h" | 22 #include "ui/app_list/speech_ui_model_observer.h" |
22 | 23 |
23 namespace extensions { | 24 namespace extensions { |
24 class Extension; | 25 class Extension; |
25 } | 26 } |
26 | 27 |
27 class Profile; | 28 class Profile; |
28 | 29 |
29 namespace app_list { | 30 namespace app_list { |
30 | 31 |
31 class RecommendedApps; | 32 class RecommendedApps; |
| 33 class SpeechAuthHelper; |
32 class SpeechRecognizer; | 34 class SpeechRecognizer; |
33 class StartPageObserver; | 35 class StartPageObserver; |
34 | 36 |
35 // StartPageService collects data to be displayed in app list's start page | 37 // StartPageService collects data to be displayed in app list's start page |
36 // and hosts the start page contents. | 38 // and hosts the start page contents. |
37 class StartPageService : public KeyedService, | 39 class StartPageService : public KeyedService, |
38 public SpeechRecognizerDelegate { | 40 public SpeechRecognizerDelegate { |
39 public: | 41 public: |
40 typedef std::vector<scoped_refptr<const extensions::Extension> > | 42 typedef std::vector<scoped_refptr<const extensions::Extension> > |
41 ExtensionList; | 43 ExtensionList; |
(...skipping 21 matching lines...) Expand all Loading... |
63 RecommendedApps* recommended_apps() { return recommended_apps_.get(); } | 65 RecommendedApps* recommended_apps() { return recommended_apps_.get(); } |
64 Profile* profile() { return profile_; } | 66 Profile* profile() { return profile_; } |
65 SpeechRecognitionState state() { return state_; } | 67 SpeechRecognitionState state() { return state_; } |
66 | 68 |
67 // Overridden from app_list::SpeechRecognizerDelegate: | 69 // Overridden from app_list::SpeechRecognizerDelegate: |
68 void OnSpeechResult(const base::string16& query, bool is_final) override; | 70 void OnSpeechResult(const base::string16& query, bool is_final) override; |
69 void OnSpeechSoundLevelChanged(int16_t level) override; | 71 void OnSpeechSoundLevelChanged(int16_t level) override; |
70 void OnSpeechRecognitionStateChanged( | 72 void OnSpeechRecognitionStateChanged( |
71 SpeechRecognitionState new_state) override; | 73 SpeechRecognitionState new_state) override; |
72 content::WebContents* GetSpeechContents() override; | 74 content::WebContents* GetSpeechContents() override; |
| 75 void GetSpeechAuthParameters(std::string* auth_scope, |
| 76 std::string* auth_token) override; |
73 | 77 |
74 protected: | 78 protected: |
75 // Protected for testing. | 79 // Protected for testing. |
76 explicit StartPageService(Profile* profile); | 80 explicit StartPageService(Profile* profile); |
77 ~StartPageService() override; | 81 ~StartPageService() override; |
78 | 82 |
79 private: | 83 private: |
80 friend class StartPageServiceFactory; | 84 friend class StartPageServiceFactory; |
81 | 85 |
82 // ProfileDestroyObserver to shutdown the service on exiting. WebContents | 86 // ProfileDestroyObserver to shutdown the service on exiting. WebContents |
(...skipping 24 matching lines...) Expand all Loading... |
107 scoped_ptr<RecommendedApps> recommended_apps_; | 111 scoped_ptr<RecommendedApps> recommended_apps_; |
108 SpeechRecognitionState state_; | 112 SpeechRecognitionState state_; |
109 ObserverList<StartPageObserver> observers_; | 113 ObserverList<StartPageObserver> observers_; |
110 bool speech_button_toggled_manually_; | 114 bool speech_button_toggled_manually_; |
111 bool speech_result_obtained_; | 115 bool speech_result_obtained_; |
112 | 116 |
113 bool webui_finished_loading_; | 117 bool webui_finished_loading_; |
114 std::vector<base::Closure> pending_webui_callbacks_; | 118 std::vector<base::Closure> pending_webui_callbacks_; |
115 | 119 |
116 scoped_ptr<SpeechRecognizer> speech_recognizer_; | 120 scoped_ptr<SpeechRecognizer> speech_recognizer_; |
| 121 scoped_ptr<SpeechAuthHelper> speech_auth_helper_; |
117 | 122 |
118 #if defined(OS_CHROMEOS) | 123 #if defined(OS_CHROMEOS) |
119 scoped_ptr<AudioStatus> audio_status_; | 124 scoped_ptr<AudioStatus> audio_status_; |
120 #endif | 125 #endif |
121 | 126 |
122 base::WeakPtrFactory<StartPageService> weak_factory_; | 127 base::WeakPtrFactory<StartPageService> weak_factory_; |
123 | 128 |
124 DISALLOW_COPY_AND_ASSIGN(StartPageService); | 129 DISALLOW_COPY_AND_ASSIGN(StartPageService); |
125 }; | 130 }; |
126 | 131 |
127 } // namespace app_list | 132 } // namespace app_list |
128 | 133 |
129 #endif // CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_ | 134 #endif // CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_ |
OLD | NEW |