 Chromium Code Reviews
 Chromium Code Reviews Issue 23033016:
  Remove autocheckout code.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 23033016:
  Remove autocheckout code.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: chrome/browser/ui/android/autofill/autofill_dialog_controller_android.h | 
| diff --git a/chrome/browser/ui/android/autofill/autofill_dialog_controller_android.h b/chrome/browser/ui/android/autofill/autofill_dialog_controller_android.h | 
| index 01a08d66a5df9aa6b942a23c42e8617ff7f67101..e59cecbd56ed07fc830d3f1f1e51eda3810d6ec5 100644 | 
| --- a/chrome/browser/ui/android/autofill/autofill_dialog_controller_android.h | 
| +++ b/chrome/browser/ui/android/autofill/autofill_dialog_controller_android.h | 
| @@ -43,12 +43,6 @@ class AutofillDialogControllerAndroid : public AutofillDialogController { | 
| virtual void Show() OVERRIDE; | 
| virtual void Hide() OVERRIDE; | 
| virtual void TabActivated() OVERRIDE; | 
| - virtual void AddAutocheckoutStep(AutocheckoutStepType step_type) OVERRIDE; | 
| - virtual void UpdateAutocheckoutStep( | 
| - AutocheckoutStepType step_type, | 
| - AutocheckoutStepStatus step_status) OVERRIDE; | 
| - virtual void OnAutocheckoutError() OVERRIDE; | 
| - virtual void OnAutocheckoutSuccess() OVERRIDE; | 
| virtual DialogType GetDialogType() const OVERRIDE; | 
| // JNI bindings for Java-side AutofillDialogDelegate: | 
| @@ -87,8 +81,6 @@ class AutofillDialogControllerAndroid : public AutofillDialogController { | 
| bool RequestingCreditCardInfo() const; | 
| bool TransmissionWillBeSecure() const; | 
| - void SetAutocheckoutState(AutocheckoutState autocheckout_state); | 
| - | 
| // The |profile| for |contents_|. | 
| Profile* const profile_; | 
| @@ -100,10 +92,6 @@ class AutofillDialogControllerAndroid : public AutofillDialogController { | 
| base::Time dialog_shown_timestamp_; | 
| AutofillMetrics::DialogInitialUserStateMetric initial_user_state_; | 
| - // The time that Autocheckout started running. Reset on error. While this is | 
| - // a valid time, |AutocheckoutIsRunning()| will return true. | 
| - base::Time autocheckout_started_timestamp_; | 
| - | 
| // Whether this is an Autocheckout or a requestAutocomplete dialog. | 
| const DialogType dialog_type_; | 
| 
aruslan
2013/08/28 17:00:43
I think you would want to remove the dialog type a
 
Raman Kakilate
2013/08/28 17:12:24
Differing removing of DialogType to next CL, I hav
 | 
| @@ -127,9 +115,6 @@ class AutofillDialogControllerAndroid : public AutofillDialogController { | 
| base::WeakPtrFactory<AutofillDialogControllerAndroid> | 
| weak_ptr_factory_; | 
| - // The current state of the Autocheckout flow. | 
| - AutocheckoutState autocheckout_state_; | 
| - | 
| // Whether the latency to display to the UI was logged to UMA yet. | 
| bool was_ui_latency_logged_; |