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

Side by Side Diff: components/autofill/common/autofill_constants.h

Issue 13928035: WIP Component build of autofill Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make windows compiling Created 7 years, 8 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 // Contains constants specific to the Autofill component. 5 // Contains constants specific to the Autofill component.
6 6
7 #ifndef COMPONENTS_AUTOFILL_COMMON_AUTOFILL_CONSTANTS_H_ 7 #ifndef COMPONENTS_AUTOFILL_COMMON_AUTOFILL_CONSTANTS_H_
8 #define COMPONENTS_AUTOFILL_COMMON_AUTOFILL_CONSTANTS_H_ 8 #define COMPONENTS_AUTOFILL_COMMON_AUTOFILL_CONSTANTS_H_
9 9
10 #include <stddef.h> // For size_t 10 #include <stddef.h> // For size_t
11 11
12 #include "components/autofill/common/autofill_export.h"
13
12 namespace autofill { 14 namespace autofill {
13 15
14 // Help URL for the Autofill dialog. 16 // Help URL for the Autofill dialog.
15 extern const char kHelpURL[]; 17 AUTOFILL_EXPORT extern const char kHelpURL[];
16 18
17 // The number of fields required by Autofill. Ideally we could send the forms 19 // The number of fields required by Autofill. Ideally we could send the forms
18 // to Autofill no matter how many fields are in the forms; however, finding the 20 // to Autofill no matter how many fields are in the forms; however, finding the
19 // label for each field is a costly operation and we can't spare the cycles if 21 // label for each field is a costly operation and we can't spare the cycles if
20 // it's not necessary. 22 // it's not necessary.
21 extern const size_t kRequiredAutofillFields; 23 extern const size_t kRequiredAutofillFields;
22 24
23 } // namespace autofill 25 } // namespace autofill
24 26
25 #endif // COMPONENTS_AUTOFILL_COMMON_AUTOFILL_CONSTANTS_H_ 27 #endif // COMPONENTS_AUTOFILL_COMMON_AUTOFILL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698