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

Side by Side Diff: chrome/browser/chromeos/extensions/echo_private_api.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h Created 6 years, 2 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_EXTENSIONS_ECHO_PRIVATE_API_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_ECHO_PRIVATE_API_H_
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_ECHO_PRIVATE_API_H_ 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_ECHO_PRIVATE_API_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "chrome/browser/chromeos/ui/echo_dialog_listener.h" 9 #include "chrome/browser/chromeos/ui/echo_dialog_listener.h"
10 #include "chrome/browser/extensions/chrome_extension_function.h" 10 #include "chrome/browser/extensions/chrome_extension_function.h"
(...skipping 13 matching lines...) Expand all
24 24
25 } // namespace chromeos 25 } // namespace chromeos
26 26
27 class EchoPrivateGetRegistrationCodeFunction 27 class EchoPrivateGetRegistrationCodeFunction
28 : public ChromeSyncExtensionFunction { 28 : public ChromeSyncExtensionFunction {
29 public: 29 public:
30 EchoPrivateGetRegistrationCodeFunction(); 30 EchoPrivateGetRegistrationCodeFunction();
31 31
32 protected: 32 protected:
33 virtual ~EchoPrivateGetRegistrationCodeFunction(); 33 virtual ~EchoPrivateGetRegistrationCodeFunction();
34 virtual bool RunSync() OVERRIDE; 34 virtual bool RunSync() override;
35 35
36 private: 36 private:
37 void GetRegistrationCode(const std::string& type); 37 void GetRegistrationCode(const std::string& type);
38 DECLARE_EXTENSION_FUNCTION("echoPrivate.getRegistrationCode", 38 DECLARE_EXTENSION_FUNCTION("echoPrivate.getRegistrationCode",
39 ECHOPRIVATE_GETREGISTRATIONCODE) 39 ECHOPRIVATE_GETREGISTRATIONCODE)
40 }; 40 };
41 41
42 class EchoPrivateGetOobeTimestampFunction 42 class EchoPrivateGetOobeTimestampFunction
43 : public ChromeAsyncExtensionFunction { 43 : public ChromeAsyncExtensionFunction {
44 public: 44 public:
45 EchoPrivateGetOobeTimestampFunction(); 45 EchoPrivateGetOobeTimestampFunction();
46 46
47 protected: 47 protected:
48 virtual ~EchoPrivateGetOobeTimestampFunction(); 48 virtual ~EchoPrivateGetOobeTimestampFunction();
49 virtual bool RunAsync() OVERRIDE; 49 virtual bool RunAsync() override;
50 50
51 private: 51 private:
52 bool GetOobeTimestampOnFileThread(); 52 bool GetOobeTimestampOnFileThread();
53 DECLARE_EXTENSION_FUNCTION("echoPrivate.getOobeTimestamp", 53 DECLARE_EXTENSION_FUNCTION("echoPrivate.getOobeTimestamp",
54 ECHOPRIVATE_GETOOBETIMESTAMP) 54 ECHOPRIVATE_GETOOBETIMESTAMP)
55 }; 55 };
56 56
57 class EchoPrivateSetOfferInfoFunction : public ChromeSyncExtensionFunction { 57 class EchoPrivateSetOfferInfoFunction : public ChromeSyncExtensionFunction {
58 public: 58 public:
59 EchoPrivateSetOfferInfoFunction(); 59 EchoPrivateSetOfferInfoFunction();
60 60
61 protected: 61 protected:
62 virtual ~EchoPrivateSetOfferInfoFunction(); 62 virtual ~EchoPrivateSetOfferInfoFunction();
63 virtual bool RunSync() OVERRIDE; 63 virtual bool RunSync() override;
64 64
65 private: 65 private:
66 DECLARE_EXTENSION_FUNCTION("echoPrivate.setOfferInfo", 66 DECLARE_EXTENSION_FUNCTION("echoPrivate.setOfferInfo",
67 ECHOPRIVATE_SETOFFERINFO) 67 ECHOPRIVATE_SETOFFERINFO)
68 }; 68 };
69 69
70 class EchoPrivateGetOfferInfoFunction : public ChromeSyncExtensionFunction { 70 class EchoPrivateGetOfferInfoFunction : public ChromeSyncExtensionFunction {
71 public: 71 public:
72 EchoPrivateGetOfferInfoFunction(); 72 EchoPrivateGetOfferInfoFunction();
73 73
74 protected: 74 protected:
75 virtual ~EchoPrivateGetOfferInfoFunction(); 75 virtual ~EchoPrivateGetOfferInfoFunction();
76 virtual bool RunSync() OVERRIDE; 76 virtual bool RunSync() override;
77 77
78 private: 78 private:
79 DECLARE_EXTENSION_FUNCTION("echoPrivate.getOfferInfo", 79 DECLARE_EXTENSION_FUNCTION("echoPrivate.getOfferInfo",
80 ECHOPRIVATE_GETOFFERINFO) 80 ECHOPRIVATE_GETOFFERINFO)
81 }; 81 };
82 82
83 // The function first checks if offers redeeming is allowed by the device 83 // The function first checks if offers redeeming is allowed by the device
84 // policy. It should then show a dialog that, depending on the check result, 84 // policy. It should then show a dialog that, depending on the check result,
85 // either asks user's consent to verify the device's eligibility for the offer, 85 // either asks user's consent to verify the device's eligibility for the offer,
86 // or informs the user that the offers redeeming is disabled. 86 // or informs the user that the offers redeeming is disabled.
87 // It returns whether the user consent was given. 87 // It returns whether the user consent was given.
88 class EchoPrivateGetUserConsentFunction : public ChromeAsyncExtensionFunction, 88 class EchoPrivateGetUserConsentFunction : public ChromeAsyncExtensionFunction,
89 public chromeos::EchoDialogListener { 89 public chromeos::EchoDialogListener {
90 public: 90 public:
91 // Type for the dialog shown callback used in tests. 91 // Type for the dialog shown callback used in tests.
92 typedef base::Callback<void(chromeos::EchoDialogView* dialog)> 92 typedef base::Callback<void(chromeos::EchoDialogView* dialog)>
93 DialogShownTestCallback; 93 DialogShownTestCallback;
94 94
95 EchoPrivateGetUserConsentFunction(); 95 EchoPrivateGetUserConsentFunction();
96 96
97 // Creates the function with non-null dialog_shown_callback_. 97 // Creates the function with non-null dialog_shown_callback_.
98 // To be used in tests. 98 // To be used in tests.
99 static scoped_refptr<EchoPrivateGetUserConsentFunction> CreateForTest( 99 static scoped_refptr<EchoPrivateGetUserConsentFunction> CreateForTest(
100 const DialogShownTestCallback& dialog_shown_callback); 100 const DialogShownTestCallback& dialog_shown_callback);
101 101
102 protected: 102 protected:
103 virtual ~EchoPrivateGetUserConsentFunction(); 103 virtual ~EchoPrivateGetUserConsentFunction();
104 104
105 virtual bool RunAsync() OVERRIDE; 105 virtual bool RunAsync() override;
106 106
107 private: 107 private:
108 // chromeos::EchoDialogListener overrides. 108 // chromeos::EchoDialogListener overrides.
109 virtual void OnAccept() OVERRIDE; 109 virtual void OnAccept() override;
110 virtual void OnCancel() OVERRIDE; 110 virtual void OnCancel() override;
111 virtual void OnMoreInfoLinkClicked() OVERRIDE; 111 virtual void OnMoreInfoLinkClicked() override;
112 112
113 // Checks whether "allow redeem ChromeOS registration offers" setting is 113 // Checks whether "allow redeem ChromeOS registration offers" setting is
114 // disabled in cros settings. It may be asynchronous if the needed settings 114 // disabled in cros settings. It may be asynchronous if the needed settings
115 // provider is not yet trusted. 115 // provider is not yet trusted.
116 // Upon completion |OnRedeemOffersAllowed| is called. 116 // Upon completion |OnRedeemOffersAllowed| is called.
117 void CheckRedeemOffersAllowed(); 117 void CheckRedeemOffersAllowed();
118 void OnRedeemOffersAllowedChecked(bool is_allowed); 118 void OnRedeemOffersAllowedChecked(bool is_allowed);
119 119
120 // Sets result and calls SendResponse. 120 // Sets result and calls SendResponse.
121 void Finalize(bool consent); 121 void Finalize(bool consent);
122 122
123 // Result of |CheckRedeemOffersAllowed()|. 123 // Result of |CheckRedeemOffersAllowed()|.
124 bool redeem_offers_allowed_; 124 bool redeem_offers_allowed_;
125 // Callback used in tests. Called after an echo dialog is shown. 125 // Callback used in tests. Called after an echo dialog is shown.
126 DialogShownTestCallback dialog_shown_callback_; 126 DialogShownTestCallback dialog_shown_callback_;
127 127
128 DECLARE_EXTENSION_FUNCTION("echoPrivate.getUserConsent", 128 DECLARE_EXTENSION_FUNCTION("echoPrivate.getUserConsent",
129 ECHOPRIVATE_GETUSERCONSENT) 129 ECHOPRIVATE_GETUSERCONSENT)
130 }; 130 };
131 131
132 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_ECHO_PRIVATE_API_H_ 132 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_ECHO_PRIVATE_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698