| Index: chrome/browser/ui/search/search_ipc_router.cc
|
| diff --git a/chrome/browser/ui/search/search_ipc_router.cc b/chrome/browser/ui/search/search_ipc_router.cc
|
| index c81a1e99229a4ff3346a81b537cd20bde1bdc59f..9e592c5fc8297b9249b042b4f15907af3376a138 100644
|
| --- a/chrome/browser/ui/search/search_ipc_router.cc
|
| +++ b/chrome/browser/ui/search/search_ipc_router.cc
|
| @@ -136,11 +136,12 @@ void SearchIPCRouter::ToggleVoiceSearch() {
|
| Send(new ChromeViewMsg_SearchBoxToggleVoiceSearch(routing_id()));
|
| }
|
|
|
| -void SearchIPCRouter::Submit(const base::string16& text) {
|
| +void SearchIPCRouter::Submit(const base::string16& text,
|
| + const EmbeddedSearchRequestParams& params) {
|
| if (!policy_->ShouldSubmitQuery())
|
| return;
|
|
|
| - Send(new ChromeViewMsg_SearchBoxSubmit(routing_id(), text));
|
| + Send(new ChromeViewMsg_SearchBoxSubmit(routing_id(), text, params));
|
| }
|
|
|
| void SearchIPCRouter::OnTabActivated() {
|
|
|