| Index: Source/core/layout/LayoutMenuList.h
|
| diff --git a/Source/core/layout/LayoutMenuList.h b/Source/core/layout/LayoutMenuList.h
|
| index 56a1eefcff8dc32d5d83d616d6fc352446ab9517..c8188fb4cf630f579ea05fb55faacfa8a10a5f90 100644
|
| --- a/Source/core/layout/LayoutMenuList.h
|
| +++ b/Source/core/layout/LayoutMenuList.h
|
| @@ -128,7 +128,10 @@ private:
|
| LayoutText* m_buttonText;
|
| LayoutBlock* m_innerBlock;
|
|
|
| - bool m_optionsChanged;
|
| + bool m_optionsChanged : 1;
|
| + bool m_isEmpty : 1;
|
| + bool m_hasUpdatedActiveOption : 1;
|
| + bool m_popupIsVisible : 1;
|
| int m_optionsWidth;
|
|
|
| int m_lastActiveIndex;
|
| @@ -136,7 +139,6 @@ private:
|
| RefPtr<ComputedStyle> m_optionStyle;
|
|
|
| RefPtrWillBePersistent<PopupMenu> m_popup;
|
| - bool m_popupIsVisible;
|
| int m_indexToSelectOnCancel;
|
|
|
| // TODO(tkent): Use FRIEND_TEST macro provided by gtest_prod.h
|
|
|