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

Side by Side Diff: components/autofill/browser/autocheckout_page_meta_data.h

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_PAGE_META_DATA_H_ 5 #ifndef COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_
6 #define CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_PAGE_META_DATA_H_ 6 #define COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "components/autofill/common/web_element_descriptor.h" 9 #include "components/autofill/common/web_element_descriptor.h"
10 10
11 namespace autofill { 11 namespace autofill {
12 12
13 // Container for multipage Autocheckout data. 13 // Container for multipage Autocheckout data.
14 struct AutocheckoutPageMetaData { 14 struct AutocheckoutPageMetaData {
15 AutocheckoutPageMetaData(); 15 AutocheckoutPageMetaData();
16 ~AutocheckoutPageMetaData(); 16 ~AutocheckoutPageMetaData();
(...skipping 22 matching lines...) Expand all
39 // The proceed element of the multipage Autofill flow. Can be null if the 39 // The proceed element of the multipage Autofill flow. Can be null if the
40 // current page is the last page of a flow or isn't a member of a flow. 40 // current page is the last page of a flow or isn't a member of a flow.
41 scoped_ptr<WebElementDescriptor> proceed_element_descriptor; 41 scoped_ptr<WebElementDescriptor> proceed_element_descriptor;
42 42
43 private: 43 private:
44 DISALLOW_COPY_AND_ASSIGN(AutocheckoutPageMetaData); 44 DISALLOW_COPY_AND_ASSIGN(AutocheckoutPageMetaData);
45 }; 45 };
46 46
47 } // namespace autofill 47 } // namespace autofill
48 48
49 #endif // CHROME_BROWSER_AUTOFILL_AUTOCHECKOUT_PAGE_META_DATA_H_ 49 #endif // COMPONENTS_AUTOFILL_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698