| 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 761c3432ffcf119812d766f2bbcd5324385a16e9..8735ad41153590dffffb53be5a63e2e71c6d665f 100644
|
| --- a/third_party/WebKit/Source/platform/ContextMenu.h
|
| +++ b/third_party/WebKit/Source/platform/ContextMenu.h
|
| @@ -42,7 +42,7 @@ class PLATFORM_EXPORT ContextMenu {
|
| const ContextMenuItem* itemWithAction(unsigned) const;
|
| const Vector<ContextMenuItem>& items() const { return m_items; }
|
| void appendItem(const ContextMenuItem& item) { m_items.append(item); }
|
| - void removeLastItem() { m_items.removeLast(); }
|
| + void removeLastItem() { m_items.pop_back(); }
|
|
|
| private:
|
| Vector<ContextMenuItem> m_items;
|
|
|