Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / app_list / start_page_service.h
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_
6 #define CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_
7
8 #include <stdint.h>
9 #include <vector>
10
11 #include "base/basictypes.h"
12 #include "base/callback.h"
13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "base/memory/weak_ptr.h"
16 #include "base/observer_list.h"
17 #include "base/strings/string16.h"
18 #include "chrome/browser/ui/app_list/speech_recognizer_delegate.h"
19 #include "components/keyed_service/core/keyed_service.h"
20 #include "content/public/browser/web_contents.h"
21 #include "ui/app_list/speech_ui_model_observer.h"
22
23 namespace extensions {
24 class Extension;
25 }
26
27 class Profile;
28
29 namespace app_list {
30
31 class RecommendedApps;
32 class SpeechRecognizer;
33 class StartPageObserver;
34
35 // StartPageService collects data to be displayed in app list's start page
36 // and hosts the start page contents.
37 class StartPageService : public KeyedService,
38                          public SpeechRecognizerDelegate {
39  public:
40   typedef std::vector<scoped_refptr<const extensions::Extension> >
41       ExtensionList;
42   // Gets the instance for the given profile.
43   static StartPageService* Get(Profile* profile);
44
45   void AddObserver(StartPageObserver* observer);
46   void RemoveObserver(StartPageObserver* observer);
47
48   void AppListShown();
49   void AppListHidden();
50   void ToggleSpeechRecognition();
51
52   // Called when the WebUI has finished loading.
53   void WebUILoaded();
54
55   // Returns true if the hotword is enabled in the app-launcher.
56   bool HotwordEnabled();
57
58   // They return essentially the same web contents but might return NULL when
59   // some flag disables the feature.
60   content::WebContents* GetStartPageContents();
61   content::WebContents* GetSpeechRecognitionContents();
62
63   RecommendedApps* recommended_apps() { return recommended_apps_.get(); }
64   Profile* profile() { return profile_; }
65   SpeechRecognitionState state() { return state_; }
66
67   // Overridden from app_list::SpeechRecognizerDelegate:
68   void OnSpeechResult(const base::string16& query, bool is_final) override;
69   void OnSpeechSoundLevelChanged(int16_t level) override;
70   void OnSpeechRecognitionStateChanged(
71       SpeechRecognitionState new_state) override;
72   content::WebContents* GetSpeechContents() override;
73
74  protected:
75   // Protected for testing.
76   explicit StartPageService(Profile* profile);
77   ~StartPageService() override;
78
79  private:
80   friend class StartPageServiceFactory;
81
82   // ProfileDestroyObserver to shutdown the service on exiting. WebContents
83   // depends on the profile and needs to be closed before the profile and its
84   // keyed service shutdown.
85   class ProfileDestroyObserver;
86
87   // The WebContentsDelegate implementation for the start page. This allows
88   // getUserMedia() request from the web contents.
89   class StartPageWebContentsDelegate;
90
91   void LoadContents();
92   void UnloadContents();
93
94   // KeyedService overrides:
95   void Shutdown() override;
96
97   Profile* profile_;
98   scoped_ptr<content::WebContents> contents_;
99   scoped_ptr<StartPageWebContentsDelegate> contents_delegate_;
100   scoped_ptr<ProfileDestroyObserver> profile_destroy_observer_;
101   scoped_ptr<RecommendedApps> recommended_apps_;
102   SpeechRecognitionState state_;
103   ObserverList<StartPageObserver> observers_;
104   bool speech_button_toggled_manually_;
105   bool speech_result_obtained_;
106
107   bool webui_finished_loading_;
108   std::vector<base::Closure> pending_webui_callbacks_;
109
110   scoped_ptr<SpeechRecognizer> speech_recognizer_;
111
112   base::WeakPtrFactory<StartPageService> weak_factory_;
113
114   DISALLOW_COPY_AND_ASSIGN(StartPageService);
115 };
116
117 }  // namespace app_list
118
119 #endif  // CHROME_BROWSER_UI_APP_LIST_START_PAGE_SERVICE_H_