| Index: third_party/WebKit/Source/platform/ContextMenuItem.cpp
|
| diff --git a/third_party/WebKit/Source/platform/ContextMenuItem.cpp b/third_party/WebKit/Source/platform/ContextMenuItem.cpp
|
| index b04d1adfec7b20e1e0a8205dada1da5119a6cdc5..8a806c81346903b0139f3ecdf40af7ebfbab15d3 100644
|
| --- a/third_party/WebKit/Source/platform/ContextMenuItem.cpp
|
| +++ b/third_party/WebKit/Source/platform/ContextMenuItem.cpp
|
| @@ -32,12 +32,10 @@ namespace blink {
|
| ContextMenuItem::ContextMenuItem(ContextMenuItemType type,
|
| ContextMenuAction action,
|
| const String& title,
|
| - const String& icon,
|
| ContextMenu* sub_menu)
|
| : type_(type),
|
| action_(action),
|
| title_(title),
|
| - icon_(icon),
|
| enabled_(true),
|
| checked_(false) {
|
| if (sub_menu)
|
| @@ -47,13 +45,11 @@ ContextMenuItem::ContextMenuItem(ContextMenuItemType type,
|
| ContextMenuItem::ContextMenuItem(ContextMenuItemType type,
|
| ContextMenuAction action,
|
| const String& title,
|
| - const String& icon,
|
| bool enabled,
|
| bool checked)
|
| : type_(type),
|
| action_(action),
|
| title_(title),
|
| - icon_(icon),
|
| enabled_(enabled),
|
| checked_(checked) {}
|
|
|
|
|