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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLSelectElement.cpp

Issue 1961883002: Generate separate files for union type containers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 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 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
8 * Copyright (C) 2010 Google Inc. All rights reserved. 8 * Copyright (C) 2010 Google Inc. All rights reserved.
9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
10 * 10 *
(...skipping 12 matching lines...) Expand all
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 * Boston, MA 02110-1301, USA. 24 * Boston, MA 02110-1301, USA.
25 * 25 *
26 */ 26 */
27 27
28 #include "core/html/HTMLSelectElement.h" 28 #include "core/html/HTMLSelectElement.h"
29 29
30 #include "bindings/core/v8/ExceptionMessages.h" 30 #include "bindings/core/v8/ExceptionMessages.h"
31 #include "bindings/core/v8/ExceptionState.h" 31 #include "bindings/core/v8/ExceptionState.h"
32 #include "bindings/core/v8/ExceptionStatePlaceholder.h" 32 #include "bindings/core/v8/ExceptionStatePlaceholder.h"
33 #include "bindings/core/v8/UnionTypesCore.h" 33 #include "bindings/core/v8/HTMLElementOrLong.h"
34 #include "bindings/core/v8/HTMLOptionElementOrHTMLOptGroupElement.h"
34 #include "core/HTMLNames.h" 35 #include "core/HTMLNames.h"
35 #include "core/dom/AXObjectCache.h" 36 #include "core/dom/AXObjectCache.h"
36 #include "core/dom/Attribute.h" 37 #include "core/dom/Attribute.h"
37 #include "core/dom/ElementTraversal.h" 38 #include "core/dom/ElementTraversal.h"
38 #include "core/dom/ExecutionContextTask.h" 39 #include "core/dom/ExecutionContextTask.h"
39 #include "core/dom/MutationCallback.h" 40 #include "core/dom/MutationCallback.h"
40 #include "core/dom/MutationObserver.h" 41 #include "core/dom/MutationObserver.h"
41 #include "core/dom/MutationObserverInit.h" 42 #include "core/dom/MutationObserverInit.h"
42 #include "core/dom/NodeComputedStyle.h" 43 #include "core/dom/NodeComputedStyle.h"
43 #include "core/dom/NodeListsNodeData.h" 44 #include "core/dom/NodeListsNodeData.h"
(...skipping 2018 matching lines...) Expand 10 before | Expand all | Expand 10 after
2062 } 2063 }
2063 2064
2064 void HTMLSelectElement::didMutateSubtree() 2065 void HTMLSelectElement::didMutateSubtree()
2065 { 2066 {
2066 DCHECK(popupIsVisible()); 2067 DCHECK(popupIsVisible());
2067 DCHECK(m_popup); 2068 DCHECK(m_popup);
2068 m_popup->updateFromElement(PopupMenu::ByDOMChange); 2069 m_popup->updateFromElement(PopupMenu::ByDOMChange);
2069 } 2070 }
2070 2071
2071 } // namespace blink 2072 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698