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

Unified Diff: Source/core/html/HTMLSelectElement.h

Issue 656723005: Use C++11 features in core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: mike's comments Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLPlugInElement.cpp ('k') | Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLSelectElement.h
diff --git a/Source/core/html/HTMLSelectElement.h b/Source/core/html/HTMLSelectElement.h
index aea623152725c34452a5b658f45f798798c97277..988f9281aca0322fbe033660d51a3a40961c35f7 100644
--- a/Source/core/html/HTMLSelectElement.h
+++ b/Source/core/html/HTMLSelectElement.h
@@ -84,7 +84,7 @@ public:
void invalidateSelectedItems();
void updateListItemSelectedStates();
- const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& listItems() const;
+ const WillBeHeapVector<RawPtrWillBeMember<HTMLElement>>& listItems() const;
virtual void accessKeyAction(bool sendMouseEvents) override;
void accessKeySetSelectedIndex(int);
@@ -214,7 +214,7 @@ private:
virtual String optionAtIndex(int index) const override;
// m_listItems contains HTMLOptionElement, HTMLOptGroupElement, and HTMLHRElement objects.
- mutable WillBeHeapVector<RawPtrWillBeMember<HTMLElement> > m_listItems;
+ mutable WillBeHeapVector<RawPtrWillBeMember<HTMLElement>> m_listItems;
Vector<bool> m_lastOnChangeSelection;
Vector<bool> m_cachedStateForActiveSelection;
TypeAhead m_typeAhead;
« no previous file with comments | « Source/core/html/HTMLPlugInElement.cpp ('k') | Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698