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

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

Issue 14022022: FINALizing of the Node hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Action review comments. 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/HTMLOptGroupElement.h ('k') | Source/core/html/HTMLOutputElement.h » ('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 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2010, 2011 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2010, 2011 Apple Inc. All rights reserved.
6 * Copyright (C) 2010 Google Inc. All rights reserved. 6 * Copyright (C) 2010 Google Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 14 matching lines...) Expand all
25 #ifndef HTMLOptionElement_h 25 #ifndef HTMLOptionElement_h
26 #define HTMLOptionElement_h 26 #define HTMLOptionElement_h
27 27
28 #include "HTMLElement.h" 28 #include "HTMLElement.h"
29 29
30 namespace WebCore { 30 namespace WebCore {
31 31
32 class HTMLDataListElement; 32 class HTMLDataListElement;
33 class HTMLSelectElement; 33 class HTMLSelectElement;
34 34
35 class HTMLOptionElement : public HTMLElement { 35 class HTMLOptionElement FINAL : public HTMLElement {
36 public: 36 public:
37 static PassRefPtr<HTMLOptionElement> create(Document*); 37 static PassRefPtr<HTMLOptionElement> create(Document*);
38 static PassRefPtr<HTMLOptionElement> create(const QualifiedName&, Document*) ; 38 static PassRefPtr<HTMLOptionElement> create(const QualifiedName&, Document*) ;
39 static PassRefPtr<HTMLOptionElement> createForJSConstructor(Document*, const String& data, const String& value, 39 static PassRefPtr<HTMLOptionElement> createForJSConstructor(Document*, const String& data, const String& value,
40 bool defaultSelected, bool selected, ExceptionCode&); 40 bool defaultSelected, bool selected, ExceptionCode&);
41 41
42 virtual String text() const; 42 virtual String text() const;
43 void setText(const String&, ExceptionCode&); 43 void setText(const String&, ExceptionCode&);
44 44
45 int index() const; 45 int index() const;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 inline const HTMLOptionElement* toHTMLOptionElement(const Node* node) 112 inline const HTMLOptionElement* toHTMLOptionElement(const Node* node)
113 { 113 {
114 return static_cast<const HTMLOptionElement*>(node); 114 return static_cast<const HTMLOptionElement*>(node);
115 } 115 }
116 116
117 #endif 117 #endif
118 118
119 } // namespace 119 } // namespace
120 120
121 #endif 121 #endif
OLDNEW
« no previous file with comments | « Source/core/html/HTMLOptGroupElement.h ('k') | Source/core/html/HTMLOutputElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698