| Index: third_party/WebKit/Source/platform/ContextMenu.h
|
| diff --git a/third_party/WebKit/Source/platform/ContextMenu.h b/third_party/WebKit/Source/platform/ContextMenu.h
|
| index 8735ad41153590dffffb53be5a63e2e71c6d665f..6687ebf7a791856da79a45397a2bd1a290b9f359 100644
|
| --- a/third_party/WebKit/Source/platform/ContextMenu.h
|
| +++ b/third_party/WebKit/Source/platform/ContextMenu.h
|
| @@ -41,7 +41,7 @@ class PLATFORM_EXPORT ContextMenu {
|
| ContextMenu() {}
|
| const ContextMenuItem* itemWithAction(unsigned) const;
|
| const Vector<ContextMenuItem>& items() const { return m_items; }
|
| - void appendItem(const ContextMenuItem& item) { m_items.append(item); }
|
| + void appendItem(const ContextMenuItem& item) { m_items.push_back(item); }
|
| void removeLastItem() { m_items.pop_back(); }
|
|
|
| private:
|
|
|