X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fchrome%2Fbrowser%2Fui%2Fsearch%2Finstant_ipc_sender.cc;h=22c2120244a445f4559aa1707ee9d0ea693dbee0;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=17271b53cd4591211e86988882d093448e13ec88;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/chrome/browser/ui/search/instant_ipc_sender.cc b/src/chrome/browser/ui/search/instant_ipc_sender.cc index 17271b5..22c2120 100644 --- a/src/chrome/browser/ui/search/instant_ipc_sender.cc +++ b/src/chrome/browser/ui/search/instant_ipc_sender.cc @@ -15,11 +15,6 @@ class InstantIPCSenderImpl : public InstantIPCSender { virtual ~InstantIPCSenderImpl() {} private: - virtual void SetOmniboxBounds(const gfx::Rect& bounds) OVERRIDE { - Send(new ChromeViewMsg_SearchBoxMarginChange( - routing_id(), bounds.x(), bounds.width())); - } - virtual void FocusChanged(OmniboxFocusState state, OmniboxFocusChangeReason reason) OVERRIDE { Send(new ChromeViewMsg_SearchBoxFocusChanged(routing_id(), state, reason)); @@ -40,11 +35,6 @@ class IncognitoInstantIPCSenderImpl : public InstantIPCSender { virtual ~IncognitoInstantIPCSenderImpl() {} private: - virtual void SetOmniboxBounds(const gfx::Rect& bounds) OVERRIDE { - Send(new ChromeViewMsg_SearchBoxMarginChange( - routing_id(), bounds.x(), bounds.width())); - } - DISALLOW_COPY_AND_ASSIGN(IncognitoInstantIPCSenderImpl); };