| Index: chrome/browser/cocoa/extensions/extension_action_context_menu.mm
|
| ===================================================================
|
| --- chrome/browser/cocoa/extensions/extension_action_context_menu.mm (revision 52101)
|
| +++ chrome/browser/cocoa/extensions/extension_action_context_menu.mm (working copy)
|
| @@ -243,6 +243,7 @@
|
| (AutocompleteTextField*)locationBar->location_entry()->
|
| GetNativeView();
|
| AutocompleteTextFieldCell* fieldCell = [field autocompleteTextFieldCell];
|
| + DCHECK(action_);
|
| NSRect popupRect =
|
| [fieldCell pageActionFrameForExtensionAction:action_
|
| inFrame:[field bounds]];
|
| @@ -276,8 +277,8 @@
|
| }
|
|
|
| - (BOOL)validateMenuItem:(NSMenuItem*)menuItem {
|
| - if([menuItem isEqualTo: inspectorItem_.get()]) {
|
| - return (action_->HasPopup(CurrentTabId()));
|
| + if([menuItem isEqualTo:inspectorItem_.get()]) {
|
| + return action_ && action_->HasPopup(CurrentTabId());
|
| }
|
| return YES;
|
| }
|
|
|