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

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

Issue 763563002: Implemented event-dispatching for button clicks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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_CHROMEOS_LOGIN_SCREENS_EULA_MODEL_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_MODEL_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_MODEL_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_MODEL_H_
7 7
8 #include "chrome/browser/chromeos/login/screens/base_screen.h" 8 #include "chrome/browser/chromeos/login/screens/base_screen.h"
9 #include "url/gurl.h" 9 #include "url/gurl.h"
10 10
11 namespace chromeos { 11 namespace chromeos {
12 12
13 class BaseScreenDelegate; 13 class BaseScreenDelegate;
14 class EulaView; 14 class EulaView;
15 15
16 // Allows us to get info from eula screen that we need. 16 // Allows us to get info from eula screen that we need.
17 class EulaModel : public BaseScreen { 17 class EulaModel : public BaseScreen {
18 public: 18 public:
19 explicit EulaModel(BaseScreenDelegate* base_screen_delegate); 19 explicit EulaModel(BaseScreenDelegate* base_screen_delegate);
20 virtual ~EulaModel(); 20 virtual ~EulaModel();
21 21
22 // BaseScreen implementation: 22 // BaseScreen implementation:
23 virtual std::string GetName() const override; 23 virtual std::string GetName() const override;
24 24
25 // Returns URL of the OEM EULA page that should be displayed using current 25 // Returns URL of the OEM EULA page that should be displayed using current
26 // locale and manifest. Returns empty URL otherwise. 26 // locale and manifest. Returns empty URL otherwise.
27 virtual GURL GetOemEulaUrl() const = 0; 27 virtual GURL GetOemEulaUrl() const = 0;
28 28
29 // Called when accept button was clicked.
30 virtual void OnAcceptButtonClicked() = 0;
31
32 // Called when back button was clicked.
33 virtual void OnBackButtonClicked() = 0;
34
35 // Initiate TPM password fetch. Will call actor's OnPasswordFetched() when 29 // Initiate TPM password fetch. Will call actor's OnPasswordFetched() when
36 // done. 30 // done.
37 virtual void InitiatePasswordFetch() = 0; 31 virtual void InitiatePasswordFetch() = 0;
38 32
39 // Returns true if usage statistics reporting is enabled. 33 // Returns true if usage statistics reporting is enabled.
40 virtual bool IsUsageStatsEnabled() const = 0; 34 virtual bool IsUsageStatsEnabled() const = 0;
41 35
42 // This method is called, when view is being destroyed. Note, if model 36 // This method is called, when view is being destroyed. Note, if model
43 // is destroyed earlier then it has to call SetModel(NULL). 37 // is destroyed earlier then it has to call SetModel(NULL).
44 virtual void OnViewDestroyed(EulaView* view) = 0; 38 virtual void OnViewDestroyed(EulaView* view) = 0;
45 }; 39 };
46 40
47 } // namespace chromeos 41 } // namespace chromeos
48 42
49 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_MODEL_H_ 43 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_EULA_MODEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698