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

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

Issue 1461193003: Revert of [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make patch applicable Created 5 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 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) 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 void valueChanged(unsigned listIndex); 144 void valueChanged(unsigned listIndex);
145 // A popup is canceled when the popup was hidden without selecting an item. 145 // A popup is canceled when the popup was hidden without selecting an item.
146 void popupDidCancel(); 146 void popupDidCancel();
147 // Provisional selection is a selection made using arrow keys or type ahead. 147 // Provisional selection is a selection made using arrow keys or type ahead.
148 void provisionalSelectionChanged(unsigned); 148 void provisionalSelectionChanged(unsigned);
149 void popupDidHide(); 149 void popupDidHide();
150 bool popupIsVisible() const { return m_popupIsVisible; } 150 bool popupIsVisible() const { return m_popupIsVisible; }
151 int optionIndexToBeShown() const; 151 int optionIndexToBeShown() const;
152 void showPopup(); 152 void showPopup();
153 void hidePopup(); 153 void hidePopup();
154 PopupMenu* popup() const; 154 PopupMenu* popup() const { return m_popup.get(); }
155 155
156 void resetTypeAheadSessionForTesting(); 156 void resetTypeAheadSessionForTesting();
157 157
158 DECLARE_VIRTUAL_TRACE(); 158 DECLARE_VIRTUAL_TRACE();
159 159
160 protected: 160 protected:
161 HTMLSelectElement(Document&, HTMLFormElement*); 161 HTMLSelectElement(Document&, HTMLFormElement*);
162 162
163 private: 163 private:
164 void willRecalcStyle(StyleRecalcChange) override; 164 void willRecalcStyle(StyleRecalcChange) override;
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 bool m_isAutofilledByPreview; 267 bool m_isAutofilledByPreview;
268 268
269 RefPtrWillBeMember<PopupMenu> m_popup; 269 RefPtrWillBeMember<PopupMenu> m_popup;
270 int m_indexToSelectOnCancel; 270 int m_indexToSelectOnCancel;
271 bool m_popupIsVisible; 271 bool m_popupIsVisible;
272 }; 272 };
273 273
274 } // namespace blink 274 } // namespace blink
275 275
276 #endif // HTMLSelectElement_h 276 #endif // HTMLSelectElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMediaElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698