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

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

Issue 611593003: Clean up forward declarations in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/HTMLFormControlsCollection.h ('k') | Source/core/html/HTMLImageElement.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, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 13 matching lines...) Expand all
24 #ifndef HTMLFormElement_h 24 #ifndef HTMLFormElement_h
25 #define HTMLFormElement_h 25 #define HTMLFormElement_h
26 26
27 #include "core/html/HTMLElement.h" 27 #include "core/html/HTMLElement.h"
28 #include "core/html/HTMLFormControlElement.h" 28 #include "core/html/HTMLFormControlElement.h"
29 #include "core/html/forms/RadioButtonGroupScope.h" 29 #include "core/html/forms/RadioButtonGroupScope.h"
30 #include "core/loader/FormSubmission.h" 30 #include "core/loader/FormSubmission.h"
31 #include "wtf/OwnPtr.h" 31 #include "wtf/OwnPtr.h"
32 #include "wtf/WeakPtr.h" 32 #include "wtf/WeakPtr.h"
33 33
34 namespace WTF{
35 class TextEncoding;
36 }
37
38 namespace blink { 34 namespace blink {
39 35
40 class Event; 36 class Event;
41 class FormAssociatedElement; 37 class FormAssociatedElement;
42 class FormData;
43 class GenericEventQueue; 38 class GenericEventQueue;
44 class HTMLFormControlElement; 39 class HTMLFormControlElement;
45 class HTMLFormControlsCollection; 40 class HTMLFormControlsCollection;
46 class HTMLImageElement; 41 class HTMLImageElement;
47 class HTMLInputElement;
48 42
49 class HTMLFormElement FINAL : public HTMLElement { 43 class HTMLFormElement FINAL : public HTMLElement {
50 DEFINE_WRAPPERTYPEINFO(); 44 DEFINE_WRAPPERTYPEINFO();
51 public: 45 public:
52 static PassRefPtrWillBeRawPtr<HTMLFormElement> create(Document&); 46 static PassRefPtrWillBeRawPtr<HTMLFormElement> create(Document&);
53 virtual ~HTMLFormElement(); 47 virtual ~HTMLFormElement();
54 virtual void trace(Visitor*) OVERRIDE; 48 virtual void trace(Visitor*) OVERRIDE;
55 49
56 PassRefPtrWillBeRawPtr<HTMLFormControlsCollection> elements(); 50 PassRefPtrWillBeRawPtr<HTMLFormControlsCollection> elements();
57 void getNamedElements(const AtomicString&, WillBeHeapVector<RefPtrWillBeMemb er<Element> >&); 51 void getNamedElements(const AtomicString&, WillBeHeapVector<RefPtrWillBeMemb er<Element> >&);
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 bool m_isInResetFunction : 1; 179 bool m_isInResetFunction : 1;
186 180
187 bool m_wasDemoted : 1; 181 bool m_wasDemoted : 1;
188 182
189 OwnPtrWillBeMember<GenericEventQueue> m_pendingAutocompleteEventsQueue; 183 OwnPtrWillBeMember<GenericEventQueue> m_pendingAutocompleteEventsQueue;
190 }; 184 };
191 185
192 } // namespace blink 186 } // namespace blink
193 187
194 #endif // HTMLFormElement_h 188 #endif // HTMLFormElement_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLFormControlsCollection.h ('k') | Source/core/html/HTMLImageElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698