| Index: chrome/browser/ui/app_list/start_page_service.h
|
| diff --git a/chrome/browser/ui/app_list/start_page_service.h b/chrome/browser/ui/app_list/start_page_service.h
|
| index 7a7872b1c3e8eb3b058eb86c02d9eaeef8b0d563..1de2132050890b249ee16a263c62f3c415a80c78 100644
|
| --- a/chrome/browser/ui/app_list/start_page_service.h
|
| +++ b/chrome/browser/ui/app_list/start_page_service.h
|
| @@ -77,6 +77,9 @@ class StartPageService : public KeyedService,
|
| content::WebContents* GetStartPageContents();
|
| content::WebContents* GetSpeechRecognitionContents();
|
|
|
| + void set_search_engine_is_google(bool search_engine_is_google) {
|
| + search_engine_is_google_ = search_engine_is_google;
|
| + }
|
| Profile* profile() { return profile_; }
|
| SpeechRecognitionState state() { return state_; }
|
|
|
| @@ -164,6 +167,7 @@ class StartPageService : public KeyedService,
|
| #endif
|
| scoped_ptr<NetworkChangeObserver> network_change_observer_;
|
|
|
| + bool search_engine_is_google_;
|
| scoped_ptr<net::URLFetcher> doodle_fetcher_;
|
|
|
| base::WeakPtrFactory<StartPageService> weak_factory_;
|
|
|