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

Unified Diff: chrome/browser/ui/echo_dialog_listener_chromeos.h

Issue 12317109: Add a dialog for getting user consent in the echo redeem flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: forgot to add echo_dialog_listener file Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/echo_dialog_listener_chromeos.h
diff --git a/chrome/browser/ui/echo_dialog_listener_chromeos.h b/chrome/browser/ui/echo_dialog_listener_chromeos.h
new file mode 100644
index 0000000000000000000000000000000000000000..a7716f6f53dc5f8556ab79749b11eb885bcf277f
--- /dev/null
+++ b/chrome/browser/ui/echo_dialog_listener_chromeos.h
@@ -0,0 +1,28 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_UI_ECHO_DIALOG_LISTENER_CHROMEOS_H_
+#define CHROME_BROWSER_UI_ECHO_DIALOG_LISTENER_CHROMEOS_H_
+
+// A listener interface for the EchoDialog, so an interested party can be
+// notified about changes to the dialog. It is provided during EchoDialog
+// construction.
+class EchoDialogListener {
+ public:
+ // Called when the EchoDialog is accepted. After call to this method, the
+ // listener will not be invoked again.
+ virtual void OnAccept() = 0;
+
+ // Called when the EchoDialog is canceled. After call to this method, the
+ // listener will not be invoked again.
+ virtual void OnCancel() = 0;
+
+ // Called when a link in the EchoDialog is clicked.
+ virtual void OnMoreInfoLinkClicked() = 0;
+
+ protected:
+ virtual ~EchoDialogListener() {}
+};
+
+#endif // CHROME_BROWSER_UI_ECHO_DIALOG_LISTENER_CHROMEOS_H_

Powered by Google App Engine
This is Rietveld 408576698