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

Unified Diff: components/autofill/content/browser/autocheckout_steps.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: components/autofill/content/browser/autocheckout_steps.h
diff --git a/components/autofill/content/browser/autocheckout_steps.h b/components/autofill/content/browser/autocheckout_steps.h
deleted file mode 100644
index d46abccc40f229a4d46fb849af846e957739141f..0000000000000000000000000000000000000000
--- a/components/autofill/content/browser/autocheckout_steps.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// 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 COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_STEPS_H_
-#define COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_STEPS_H_
-
-namespace autofill {
-
-// Stages of a buy flow that may be encountered on an Autocheckout-supported
-// site, used primarily for display purposes.
-// Indexed for easy conversion from int values returned by Autofill server.
-enum AutocheckoutStepType {
- AUTOCHECKOUT_STEP_MIN_VALUE = 1,
- AUTOCHECKOUT_STEP_SHIPPING = AUTOCHECKOUT_STEP_MIN_VALUE,
- AUTOCHECKOUT_STEP_DELIVERY = 2,
- AUTOCHECKOUT_STEP_BILLING = 3,
- AUTOCHECKOUT_STEP_PROXY_CARD = 4,
- AUTOCHECKOUT_STEP_MAX_VALUE = AUTOCHECKOUT_STEP_PROXY_CARD,
-};
-
-// Possible statuses for the above step types, again used primarily for display.
-enum AutocheckoutStepStatus {
- AUTOCHECKOUT_STEP_UNSTARTED,
- AUTOCHECKOUT_STEP_STARTED,
- AUTOCHECKOUT_STEP_COMPLETED,
- AUTOCHECKOUT_STEP_FAILED,
-};
-
-} // namespace autofill
-
-#endif // COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_STEPS_H_

Powered by Google App Engine
This is Rietveld 408576698