Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Side by Side Diff: chrome/browser/ui/app_list/search/search_resource_manager.h

Issue 2934883002: cros: add new search box hint text for launcher (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_SEARCH_SEARCH_RESOURCE_MANAGER_H_ 5 #ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_SEARCH_RESOURCE_MANAGER_H_
6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_SEARCH_RESOURCE_MANAGER_H_ 6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_SEARCH_RESOURCE_MANAGER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "ui/app_list/speech_ui_model_observer.h" 9 #include "ui/app_list/speech_ui_model_observer.h"
10 10
(...skipping 13 matching lines...) Expand all
24 ~SearchResourceManager() override; 24 ~SearchResourceManager() override;
25 25
26 private: 26 private:
27 // SpeechUIModelObserver overrides: 27 // SpeechUIModelObserver overrides:
28 void OnSpeechRecognitionStateChanged( 28 void OnSpeechRecognitionStateChanged(
29 SpeechRecognitionState new_state) override; 29 SpeechRecognitionState new_state) override;
30 30
31 SearchBoxModel* search_box_; 31 SearchBoxModel* search_box_;
32 SpeechUIModel* speech_ui_; 32 SpeechUIModel* speech_ui_;
33 33
34 bool fullscreen_app_list_enabled_ = false;
xiyuan 2017/06/12 19:24:55 nit: bool -> const bool
Qiang(Joe) Xu 2017/06/12 21:45:31 felt can just remove this.
35
34 DISALLOW_COPY_AND_ASSIGN(SearchResourceManager); 36 DISALLOW_COPY_AND_ASSIGN(SearchResourceManager);
35 }; 37 };
36 38
37 } // namespace app_list 39 } // namespace app_list
38 40
39 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_SEARCH_RESOURCE_MANAGER_H_ 41 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_SEARCH_RESOURCE_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698