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

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

Issue 280123002: Oilpan: move LiveNodeList collections to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Have NodeRareData clear out NodeListsNodeData instead. Created 6 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
« no previous file with comments | « Source/core/html/HTMLOptionsCollection.cpp ('k') | Source/core/html/HTMLSelectElement.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) 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
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 void addBeforeOptionAtIndex(HTMLElement*, int beforeIndex, ExceptionState&); 66 void addBeforeOptionAtIndex(HTMLElement*, int beforeIndex, ExceptionState&);
67 67
68 using Node::remove; 68 using Node::remove;
69 void remove(int index); 69 void remove(int index);
70 70
71 String value() const; 71 String value() const;
72 void setValue(const String&, bool sendEvents = false); 72 void setValue(const String&, bool sendEvents = false);
73 String suggestedValue() const; 73 String suggestedValue() const;
74 void setSuggestedValue(const String&); 74 void setSuggestedValue(const String&);
75 75
76 PassRefPtr<HTMLOptionsCollection> options(); 76 PassRefPtrWillBeRawPtr<HTMLOptionsCollection> options();
77 PassRefPtr<HTMLCollection> selectedOptions(); 77 PassRefPtrWillBeRawPtr<HTMLCollection> selectedOptions();
78 78
79 void optionElementChildrenChanged(); 79 void optionElementChildrenChanged();
80 80
81 void setRecalcListItems(); 81 void setRecalcListItems();
82 void invalidateSelectedItems(); 82 void invalidateSelectedItems();
83 void updateListItemSelectedStates(); 83 void updateListItemSelectedStates();
84 84
85 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& listItems() const; 85 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& listItems() const;
86 86
87 virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE; 87 virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 bool m_isProcessingUserDrivenChange; 212 bool m_isProcessingUserDrivenChange;
213 bool m_multiple; 213 bool m_multiple;
214 bool m_activeSelectionState; 214 bool m_activeSelectionState;
215 mutable bool m_shouldRecalcListItems; 215 mutable bool m_shouldRecalcListItems;
216 int m_suggestedIndex; 216 int m_suggestedIndex;
217 }; 217 };
218 218
219 } // namespace 219 } // namespace
220 220
221 #endif 221 #endif
OLDNEW
« no previous file with comments | « Source/core/html/HTMLOptionsCollection.cpp ('k') | Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698