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

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

Issue 341193009: Include Event.h in fewer header files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + NullExecutionContext fix Created 6 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 1999 Antti Koivisto (koivisto@kde.org) 4 * (C) 1999 Antti Koivisto (koivisto@kde.org)
5 * (C) 2000 Dirk Mueller (mueller@kde.org) 5 * (C) 2000 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved.
7 * Copyright (C) 2010 Google Inc. All rights reserved. 7 * Copyright (C) 2010 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
11 * License as published by the Free Software Foundation; either 11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version. 12 * version 2 of the License, or (at your option) any later version.
13 * 13 *
14 * This library is distributed in the hope that it will be useful, 14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details. 17 * Library General Public License for more details.
18 * 18 *
19 * You should have received a copy of the GNU Library General Public License 19 * You should have received a copy of the GNU Library General Public License
20 * along with this library; see the file COPYING.LIB. If not, write to 20 * along with this library; see the file COPYING.LIB. If not, write to
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 * Boston, MA 02110-1301, USA. 22 * Boston, MA 02110-1301, USA.
23 * 23 *
24 */ 24 */
25 25
26 #ifndef HTMLSelectElement_h 26 #ifndef HTMLSelectElement_h
27 #define HTMLSelectElement_h 27 #define HTMLSelectElement_h
28 28
29 #include "core/events/Event.h"
30 #include "core/html/HTMLFormControlElementWithState.h" 29 #include "core/html/HTMLFormControlElementWithState.h"
31 #include "core/html/HTMLOptionsCollection.h" 30 #include "core/html/HTMLOptionsCollection.h"
32 #include "core/html/forms/TypeAhead.h" 31 #include "core/html/forms/TypeAhead.h"
33 #include "wtf/Vector.h" 32 #include "wtf/Vector.h"
34 33
35 namespace WebCore { 34 namespace WebCore {
36 35
37 class ExceptionState; 36 class ExceptionState;
38 class HTMLOptionElement; 37 class HTMLOptionElement;
39 38
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 bool m_isProcessingUserDrivenChange; 211 bool m_isProcessingUserDrivenChange;
213 bool m_multiple; 212 bool m_multiple;
214 bool m_activeSelectionState; 213 bool m_activeSelectionState;
215 mutable bool m_shouldRecalcListItems; 214 mutable bool m_shouldRecalcListItems;
216 int m_suggestedIndex; 215 int m_suggestedIndex;
217 }; 216 };
218 217
219 } // namespace 218 } // namespace
220 219
221 #endif 220 #endif
OLDNEW
« no previous file with comments | « Source/core/html/HTMLDialogElement.cpp ('k') | Source/core/html/canvas/CanvasRenderingContext2D.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698