1/*
2 * Copyright (C) 2010, 2012 Google Inc. All rights reserved.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB.  If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 *
19 */
20
21
22#ifndef InputTypeNames_h
23#define InputTypeNames_h
24
25#include <wtf/text/AtomicString.h>
26
27namespace WebCore {
28
29namespace InputTypeNames {
30
31const AtomicString& button();
32const AtomicString& checkbox();
33const AtomicString& color();
34const AtomicString& date();
35const AtomicString& datetime();
36const AtomicString& datetimelocal();
37const AtomicString& email();
38const AtomicString& file();
39const AtomicString& hidden();
40const AtomicString& image();
41const AtomicString& month();
42const AtomicString& number();
43const AtomicString& password();
44const AtomicString& radio();
45const AtomicString& range();
46const AtomicString& reset();
47const AtomicString& search();
48const AtomicString& submit();
49const AtomicString& telephone();
50const AtomicString& text();
51const AtomicString& time();
52const AtomicString& url();
53const AtomicString& week();
54
55}
56
57} // namespace WebCore
58
59#endif // InputTypeNames_h
60