| Index: chrome/browser/tab_contents/tab_contents.cc
|
| diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc
|
| index 7332ee611e37eb428a530b93d80a1759708566c5..c974734cf2d550575550f11ea4e855f7410d4c3c 100644
|
| --- a/chrome/browser/tab_contents/tab_contents.cc
|
| +++ b/chrome/browser/tab_contents/tab_contents.cc
|
| @@ -2109,6 +2109,11 @@ void TabContents::OnPageTranslated(int32 page_id,
|
| Details<PageTranslatedDetails>(&details));
|
| }
|
|
|
| +void TabContents::OnSetSuggestResult(int32 page_id, const std::string& result) {
|
| + if (delegate())
|
| + delegate()->OnSetSuggestResult(page_id, result);
|
| +}
|
| +
|
| void TabContents::DidStartProvisionalLoadForFrame(
|
| RenderViewHost* render_view_host,
|
| bool is_main_frame,
|
|
|