Index: chrome/browser/renderer_context_menu/spelling_menu_observer.cc |
diff --git a/chrome/browser/renderer_context_menu/spelling_menu_observer.cc b/chrome/browser/renderer_context_menu/spelling_menu_observer.cc |
index 80dc0973dc4bacdc78a11a0845cf0029189c0325..86bf271867eebc6c08010377fa1c092cbfe16b42 100644 |
--- a/chrome/browser/renderer_context_menu/spelling_menu_observer.cc |
+++ b/chrome/browser/renderer_context_menu/spelling_menu_observer.cc |
@@ -380,7 +380,7 @@ void SpellingMenuObserver::OnTextCheckComplete( |
// Update the menu item with the result text. We disable this item and hide |
// it when the spelling service does not provide valid suggestions. |
proxy_->UpdateMenuItem(IDC_CONTENT_CONTEXT_SPELLING_SUGGESTION, succeeded_, |
- false, result_); |
+ false, result_, NULL); |
} |
} |
@@ -393,5 +393,5 @@ void SpellingMenuObserver::OnAnimationTimerExpired() { |
// Update the menu item with the text. We disable this item to prevent users |
// from selecting it. |
proxy_->UpdateMenuItem(IDC_CONTENT_CONTEXT_SPELLING_SUGGESTION, false, false, |
- loading_message); |
+ loading_message, NULL); |
} |