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

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

Issue 531183003: bindings: Retires manual dispatching in createV8{HTML,SVG}Wrapper, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added FIXME comments. Created 6 years, 3 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
« no previous file with comments | « Source/core/html/HTMLCollection.idl ('k') | Source/core/html/HTMLElement.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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * Copyright (C) 2004-2007, 2009, 2014 Apple Inc. All rights reserved. 4 * Copyright (C) 2004-2007, 2009, 2014 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 static const AtomicString& eventNameForAttributeName(const QualifiedName& at trName); 93 static const AtomicString& eventNameForAttributeName(const QualifiedName& at trName);
94 94
95 virtual bool matchesReadOnlyPseudoClass() const OVERRIDE; 95 virtual bool matchesReadOnlyPseudoClass() const OVERRIDE;
96 virtual bool matchesReadWritePseudoClass() const OVERRIDE; 96 virtual bool matchesReadWritePseudoClass() const OVERRIDE;
97 97
98 static const AtomicString& eventParameterName(); 98 static const AtomicString& eventParameterName();
99 99
100 HTMLMenuElement* contextMenu() const; 100 HTMLMenuElement* contextMenu() const;
101 void setContextMenu(HTMLMenuElement*); 101 void setContextMenu(HTMLMenuElement*);
102 102
103 virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*) OVERRIDE;
104
105 protected: 103 protected:
106 HTMLElement(const QualifiedName& tagName, Document&, ConstructionType); 104 HTMLElement(const QualifiedName& tagName, Document&, ConstructionType);
107 105
108 void addHTMLLengthToStyle(MutableStylePropertySet*, CSSPropertyID, const Str ing& value); 106 void addHTMLLengthToStyle(MutableStylePropertySet*, CSSPropertyID, const Str ing& value);
109 void addHTMLColorToStyle(MutableStylePropertySet*, CSSPropertyID, const Stri ng& color); 107 void addHTMLColorToStyle(MutableStylePropertySet*, CSSPropertyID, const Stri ng& color);
110 108
111 void applyAlignmentAttributeToStyle(const AtomicString&, MutableStylePropert ySet*); 109 void applyAlignmentAttributeToStyle(const AtomicString&, MutableStylePropert ySet*);
112 void applyBorderAttributeToStyle(const AtomicString&, MutableStylePropertySe t*); 110 void applyBorderAttributeToStyle(const AtomicString&, MutableStylePropertySe t*);
113 111
114 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 112 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 template<typename T> inline bool is##thisType(const PassRefPtr<T>& node) { r eturn is##thisType(node.get()); } \ 175 template<typename T> inline bool is##thisType(const PassRefPtr<T>& node) { r eturn is##thisType(node.get()); } \
178 template<typename T> inline bool is##thisType(const RefPtr<T>& node) { retur n is##thisType(node.get()); } \ 176 template<typename T> inline bool is##thisType(const RefPtr<T>& node) { retur n is##thisType(node.get()); } \
179 template <> inline bool isElementOfType<const thisType>(const HTMLElement& e lement) { return is##thisType(element); } \ 177 template <> inline bool isElementOfType<const thisType>(const HTMLElement& e lement) { return is##thisType(element); } \
180 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) 178 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType)
181 179
182 } // namespace blink 180 } // namespace blink
183 181
184 #include "core/HTMLElementTypeHelpers.h" 182 #include "core/HTMLElementTypeHelpers.h"
185 183
186 #endif // HTMLElement_h 184 #endif // HTMLElement_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLCollection.idl ('k') | Source/core/html/HTMLElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698