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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller.h

Issue 23033016: Remove autocheckout code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Even more deletes, and Ilya review. Created 7 years, 4 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/autofill/autofill_dialog_controller.h
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller.h b/chrome/browser/ui/autofill/autofill_dialog_controller.h
index 819f6548c2e0780217dc5b58ef50953c91edf574..651c8382d5b2c243680ca7848b0f3fac6071514c 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller.h
@@ -11,7 +11,6 @@
#include "base/memory/weak_ptr.h"
#include "base/strings/string16.h"
#include "chrome/browser/ui/autofill/autofill_dialog_types.h"
-#include "components/autofill/content/browser/autocheckout_steps.h"
#include "components/autofill/core/browser/form_structure.h"
class GURL;
@@ -53,20 +52,7 @@ class AutofillDialogController {
// Used to trigger a refresh of the user's Wallet data.
virtual void TabActivated() = 0;
- // Adds a step in the flow to the Autocheckout UI.
- virtual void AddAutocheckoutStep(AutocheckoutStepType step_type) = 0;
-
- // Updates the status of a step in the Autocheckout UI.
- virtual void UpdateAutocheckoutStep(
- AutocheckoutStepType step_type,
- AutocheckoutStepStatus step_status) = 0;
-
- // Called when there is an error in an active Autocheckout flow.
- virtual void OnAutocheckoutError() = 0;
-
- // Called when an Autocheckout flow completes successfully.
- virtual void OnAutocheckoutSuccess() = 0;
-
+ // TODO(ramankk): Get rid of DialogType as there is only one DialogType now.
// Returns the dialog type.
virtual DialogType GetDialogType() const = 0;
};

Powered by Google App Engine
This is Rietveld 408576698