Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
|
Ilya Sherman
2013/01/15 06:31:52
nit: 2013, since this is a new file. (Applies to
Raman Kakilate
2013/01/15 23:02:33
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_FLOW_UTIL_H_ | |
| 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_FLOW_UTIL_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 struct FormData; | |
| 11 struct FormFieldData; | |
| 12 | |
| 13 namespace autofill { | |
| 14 | |
| 15 FormFieldData BuildField(const std::string& autocomplete_attribute); | |
| 16 | |
| 17 FormData BuildAutofillFlowFormData(); | |
|
Ilya Sherman
2013/01/15 06:31:52
Why are these exposed in their own header file? T
Ilya Sherman
2013/01/15 06:31:52
If you do keep these functions here, please add do
Raman Kakilate
2013/01/15 23:02:33
Done.
Raman Kakilate
2013/01/15 23:02:33
You asked me move out of infobars as they are comp
Ilya Sherman
2013/01/15 23:24:46
The infobar code is still calling this, so you've
Raman Kakilate
2013/01/16 19:20:12
created AutocheckoutManager and moved the function
| |
| 18 | |
| 19 } // namespace autofill | |
| 20 | |
| 21 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_FLOW_UTIL_H_ | |
| 22 | |
| OLD | NEW |