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

Side by Side Diff: Source/core/html/HTMLDataListElement.h

Issue 14859003: Remove the compile time flag for DATALIST Element. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebasing after r150849 Created 7 years, 7 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
« no previous file with comments | « Source/core/html/ColorInputType.cpp ('k') | Source/core/html/HTMLDataListElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2009, Google Inc. All rights reserved. 2 * Copyright (c) 2009, Google Inc. All rights reserved.
3 * Copyright (C) 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 14 matching lines...) Expand all
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 #ifndef HTMLDataListElement_h 32 #ifndef HTMLDataListElement_h
33 #define HTMLDataListElement_h 33 #define HTMLDataListElement_h
34 34
35 #if ENABLE(DATALIST_ELEMENT)
36 #include "core/html/HTMLCollection.h" 35 #include "core/html/HTMLCollection.h"
37 #include "core/html/HTMLElement.h" 36 #include "core/html/HTMLElement.h"
38 37
39 namespace WebCore { 38 namespace WebCore {
40 39
41 class HTMLDataListElement FINAL : public HTMLElement { 40 class HTMLDataListElement FINAL : public HTMLElement {
42 public: 41 public:
43 static PassRefPtr<HTMLDataListElement> create(const QualifiedName&, Document *); 42 static PassRefPtr<HTMLDataListElement> create(const QualifiedName&, Document *);
44 43
45 PassRefPtr<HTMLCollection> options(); 44 PassRefPtr<HTMLCollection> options();
46 45
47 void optionElementChildrenChanged(); 46 void optionElementChildrenChanged();
48 47
49 private: 48 private:
50 HTMLDataListElement(const QualifiedName&, Document*); 49 HTMLDataListElement(const QualifiedName&, Document*);
51 }; 50 };
52 51
53 } // namespace WebCore 52 } // namespace WebCore
54 #endif // ENABLE(DATALIST_ELEMENT)
55 53
56 #endif // HTMLDataListElement_h 54 #endif // HTMLDataListElement_h
OLDNEW
« no previous file with comments | « Source/core/html/ColorInputType.cpp ('k') | Source/core/html/HTMLDataListElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698