| Index: chrome/browser/instant/instant_client.cc
|
| diff --git a/chrome/browser/instant/instant_client.cc b/chrome/browser/instant/instant_client.cc
|
| index 8aa53fb6ca2b30ada42e2926c4dca76b2afb49e2..e0d339405895293f42d5c6ee78579f6c178e7d69 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() {
|
|
|