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..301ae9699b7419933f3c058eddb218d4e490eae9 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,6 @@ 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; |
- |
// Returns the dialog type. |
virtual DialogType GetDialogType() const = 0; |
Evan Stade
2013/08/26 18:23:26
can you remove this or flag it for removal?
Raman Kakilate
2013/08/27 21:52:59
Done.
|
}; |