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

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

Issue 16879006: In components/autofill, move common/ to core/common/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflict Created 7 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_
6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "components/autofill/common/web_element_descriptor.h" 11 #include "components/autofill/core/common/web_element_descriptor.h"
12 12
13 namespace autofill { 13 namespace autofill {
14 14
15 // Container for multipage Autocheckout data. 15 // Container for multipage Autocheckout data.
16 struct AutocheckoutPageMetaData { 16 struct AutocheckoutPageMetaData {
17 AutocheckoutPageMetaData(); 17 AutocheckoutPageMetaData();
18 ~AutocheckoutPageMetaData(); 18 ~AutocheckoutPageMetaData();
19 19
20 // Returns true if the Autofill server says that the current page is start of 20 // Returns true if the Autofill server says that the current page is start of
21 // a multipage Autofill flow. 21 // a multipage Autofill flow.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // |click_elements_after_form_fill|. 57 // |click_elements_after_form_fill|.
58 WebElementDescriptor proceed_element_descriptor; 58 WebElementDescriptor proceed_element_descriptor;
59 59
60 private: 60 private:
61 DISALLOW_COPY_AND_ASSIGN(AutocheckoutPageMetaData); 61 DISALLOW_COPY_AND_ASSIGN(AutocheckoutPageMetaData);
62 }; 62 };
63 63
64 } // namespace autofill 64 } // namespace autofill
65 65
66 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_ 66 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_AUTOCHECKOUT_PAGE_META_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698