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 <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
17 #include "base/strings/string16.h" | 17 #include "base/strings/string16.h" |
18 #include "chrome/browser/ui/app_list/speech_recognizer_delegate.h" | 18 #include "chrome/browser/ui/app_list/speech_recognizer_delegate.h" |
19 #include "components/keyed_service/core/keyed_service.h" | 19 #include "components/keyed_service/core/keyed_service.h" |
20 #include "content/public/browser/web_contents.h" | 20 #include "content/public/browser/web_contents.h" |
21 #include "ui/app_list/speech_ui_model_observer.h" | 21 #include "ui/app_list/speech_ui_model_observer.h" |
22 | 22 |
23 #if defined(OS_CHROMEOS) | |
24 #include "chromeos/audio/cras_audio_handler.h" | |
25 #endif | |
26 | |
23 namespace extensions { | 27 namespace extensions { |
24 class Extension; | 28 class Extension; |
25 } | 29 } |
26 | 30 |
27 class Profile; | 31 class Profile; |
28 | 32 |
29 namespace app_list { | 33 namespace app_list { |
30 | 34 |
31 class RecommendedApps; | 35 class RecommendedApps; |
32 class SpeechRecognizer; | 36 class SpeechRecognizer; |
33 class StartPageObserver; | 37 class StartPageObserver; |
34 | 38 |
35 // StartPageService collects data to be displayed in app list's start page | 39 // StartPageService collects data to be displayed in app list's start page |
36 // and hosts the start page contents. | 40 // and hosts the start page contents. |
37 class StartPageService : public KeyedService, | 41 class StartPageService : public KeyedService, |
38 public SpeechRecognizerDelegate { | 42 public SpeechRecognizerDelegate, |
tapted
2014/11/25 05:03:11
does this trailing comma break things?
I'm not re
Jun Mukai
2014/11/26 01:39:21
You are right.
I think StartPageServiceChromeOS is
tapted
2014/11/26 02:05:58
looks good!
| |
43 #if defined(OS_CHROMEOS) | |
44 public chromeos::CrasAudioHandler::AudioObserver | |
45 #endif | |
46 { | |
39 public: | 47 public: |
40 typedef std::vector<scoped_refptr<const extensions::Extension> > | 48 typedef std::vector<scoped_refptr<const extensions::Extension> > |
41 ExtensionList; | 49 ExtensionList; |
42 // Gets the instance for the given profile. | 50 // Gets the instance for the given profile. |
43 static StartPageService* Get(Profile* profile); | 51 static StartPageService* Get(Profile* profile); |
44 | 52 |
45 void AddObserver(StartPageObserver* observer); | 53 void AddObserver(StartPageObserver* observer); |
46 void RemoveObserver(StartPageObserver* observer); | 54 void RemoveObserver(StartPageObserver* observer); |
47 | 55 |
48 void AppListShown(); | 56 void AppListShown(); |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
87 // The WebContentsDelegate implementation for the start page. This allows | 95 // The WebContentsDelegate implementation for the start page. This allows |
88 // getUserMedia() request from the web contents. | 96 // getUserMedia() request from the web contents. |
89 class StartPageWebContentsDelegate; | 97 class StartPageWebContentsDelegate; |
90 | 98 |
91 void LoadContents(); | 99 void LoadContents(); |
92 void UnloadContents(); | 100 void UnloadContents(); |
93 | 101 |
94 // KeyedService overrides: | 102 // KeyedService overrides: |
95 void Shutdown() override; | 103 void Shutdown() override; |
96 | 104 |
105 #if defined(OS_CHROMEOS) | |
106 // chromeos::CrasAudioHandler::AudioObserver: | |
107 void OnInputMuteChanged() override; | |
108 void OnActiveInputNodeChanged() override; | |
109 #endif | |
110 | |
97 Profile* profile_; | 111 Profile* profile_; |
98 scoped_ptr<content::WebContents> contents_; | 112 scoped_ptr<content::WebContents> contents_; |
99 scoped_ptr<StartPageWebContentsDelegate> contents_delegate_; | 113 scoped_ptr<StartPageWebContentsDelegate> contents_delegate_; |
100 scoped_ptr<ProfileDestroyObserver> profile_destroy_observer_; | 114 scoped_ptr<ProfileDestroyObserver> profile_destroy_observer_; |
101 scoped_ptr<RecommendedApps> recommended_apps_; | 115 scoped_ptr<RecommendedApps> recommended_apps_; |
102 SpeechRecognitionState state_; | 116 SpeechRecognitionState state_; |
103 ObserverList<StartPageObserver> observers_; | 117 ObserverList<StartPageObserver> observers_; |
104 bool speech_button_toggled_manually_; | 118 bool speech_button_toggled_manually_; |
105 bool speech_result_obtained_; | 119 bool speech_result_obtained_; |
106 | 120 |
107 bool webui_finished_loading_; | 121 bool webui_finished_loading_; |
108 std::vector<base::Closure> pending_webui_callbacks_; | 122 std::vector<base::Closure> pending_webui_callbacks_; |
109 | 123 |
110 scoped_ptr<SpeechRecognizer> speech_recognizer_; | 124 scoped_ptr<SpeechRecognizer> speech_recognizer_; |
111 | 125 |
112 base::WeakPtrFactory<StartPageService> weak_factory_; | 126 base::WeakPtrFactory<StartPageService> weak_factory_; |
113 | 127 |
114 DISALLOW_COPY_AND_ASSIGN(StartPageService); | 128 DISALLOW_COPY_AND_ASSIGN(StartPageService); |
115 }; | 129 }; |
116 | 130 |
117 } // namespace app_list | 131 } // namespace app_list |
118 | 132 |
119 #endif // CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_ | 133 #endif // CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_ |
OLD | NEW |