Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / search / instant_ipc_sender.cc
index 17271b5..22c2120 100644 (file)
@@ -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);
 };