Index: chrome/browser/chromeos/extensions/echo_private_api.h |
diff --git a/chrome/browser/chromeos/extensions/echo_private_api.h b/chrome/browser/chromeos/extensions/echo_private_api.h |
index 8e813992e676cdbacabe45f7d9512701287e19ac..651e58b620358ddd0f87217e7e7e3a27d794a24a 100644 |
--- a/chrome/browser/chromeos/extensions/echo_private_api.h |
+++ b/chrome/browser/chromeos/extensions/echo_private_api.h |
@@ -34,4 +34,17 @@ class GetOobeTimestampFunction : public AsyncExtensionFunction { |
DECLARE_EXTENSION_FUNCTION("echoPrivate.getOobeTimestamp", |
ECHOPRIVATE_GETOOBETIMESTAMP) |
}; |
+ |
+class AllowRedeemOffersFunction : public SyncExtensionFunction { |
+ public: |
+ AllowRedeemOffersFunction(); |
+ |
+ protected: |
+ virtual ~AllowRedeemOffersFunction(); |
+ virtual bool RunImpl() OVERRIDE; |
+ |
+ private: |
+ DECLARE_EXTENSION_FUNCTION("echoPrivate.allowRedeemOffers", |
+ ECHOPRIVATE_ALLOWREDEEMOFFERS) |
+}; |
#endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_ECHO_PRIVATE_API_H_ |