| Index: chrome/browser/instant/instant_client.cc
|
| diff --git a/chrome/browser/instant/instant_client.cc b/chrome/browser/instant/instant_client.cc
|
| index 5a4efc5beb611c68ca3037ade75f53e0c4b57988..792945a235561013a8b2cba8bfc45fcef8d17510 100644
|
| --- a/chrome/browser/instant/instant_client.cc
|
| +++ b/chrome/browser/instant/instant_client.cc
|
| @@ -36,8 +36,12 @@ void InstantClient::Cancel(const string16& text) {
|
| Send(new ChromeViewMsg_SearchBoxCancel(routing_id(), text));
|
| }
|
|
|
| -void InstantClient::SetOmniboxBounds(const gfx::Rect& bounds) {
|
| - Send(new ChromeViewMsg_SearchBoxResize(routing_id(), bounds));
|
| +void InstantClient::SetPopupBounds(const gfx::Rect& bounds) {
|
| + Send(new ChromeViewMsg_SearchBoxPopupResize(routing_id(), bounds));
|
| +}
|
| +
|
| +void InstantClient::SetMarginSize(const int start, const int end) {
|
| + Send(new ChromeViewMsg_SearchBoxMarginChange(routing_id(), start, end));
|
| }
|
|
|
| void InstantClient::DetermineIfPageSupportsInstant() {
|
|
|