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

Side by Side Diff: chrome/browser/chromeos/login/screens/voice_interaction_value_prop_screen_view.h

Issue 2912593002: Create OOBE screen for Voice Interaction value proposition (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
(Empty)
1 // Copyright 2016 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_CHROMEOS_LOGIN_SCREENS_VOICE_INTERACTION_VALUE_PROP_SCREE N_VIEW_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_VOICE_INTERACTION_VALUE_PROP_SCREE N_VIEW_H_
7
8 #include <string>
xiyuan 2017/05/30 19:26:21 nit: unused ?
yueli 2017/06/02 02:03:46 Done.
9
10 #include "chrome/browser/chromeos/login/oobe_screen.h"
11
12 namespace chromeos {
13
14 class VoiceInteractionValuePropScreen;
15
16 // Interface for dependency injection between VoiceInteractionValuePropScreen
17 // and its WebUI representation.
18 class VoiceInteractionValuePropScreenView {
19 public:
20 constexpr static OobeScreen kScreenId =
21 OobeScreen::SCREEN_VOICE_INTERACTION_VALUE_PROP;
22
23 virtual ~VoiceInteractionValuePropScreenView() {}
24
25 virtual void Bind(VoiceInteractionValuePropScreen* screen) = 0;
26 virtual void Unbind() = 0;
27 virtual void Show() = 0;
28 virtual void Hide() = 0;
29
30 protected:
31 VoiceInteractionValuePropScreenView() = default;
32
33 private:
34 DISALLOW_COPY_AND_ASSIGN(VoiceInteractionValuePropScreenView);
35 };
36
37 } // namespace chromeos
38
39 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_VOICE_INTERACTION_VALUE_PROP_SC REEN_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698