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

Side by Side Diff: Source/core/rendering/RenderMenuList.h

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Back out non-Oilpan experiment + tidy up by adding frame() ref accessors Created 6 years, 3 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 * This file is part of the select element renderer in WebCore. 2 * This file is part of the select element renderer in WebCore.
3 * 3 *
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed. 5 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 RawPtrWillBeMember<RenderText> m_buttonText; 122 RawPtrWillBeMember<RenderText> m_buttonText;
123 RawPtrWillBeMember<RenderBlock> m_innerBlock; 123 RawPtrWillBeMember<RenderBlock> m_innerBlock;
124 124
125 bool m_optionsChanged; 125 bool m_optionsChanged;
126 int m_optionsWidth; 126 int m_optionsWidth;
127 127
128 int m_lastActiveIndex; 128 int m_lastActiveIndex;
129 129
130 RefPtr<RenderStyle> m_optionStyle; 130 RefPtr<RenderStyle> m_optionStyle;
131 131
132 RefPtr<PopupMenu> m_popup; 132 RefPtrWillBeMember<PopupMenu> m_popup;
133 bool m_popupIsVisible; 133 bool m_popupIsVisible;
134 }; 134 };
135 135
136 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderMenuList, isMenuList()); 136 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderMenuList, isMenuList());
137 137
138 } 138 }
139 139
140 #endif 140 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698