summaryrefslogtreecommitdiffstats
path: root/chrome/browser/external_tab_container_win.h
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-02 00:32:16 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-02 00:32:16 +0000
commitb888919c4ebb50770e1a4e17207576d8b61d7e72 (patch)
treee7e8d24675205ee57f32d3b95789ab8b9f09fd1d /chrome/browser/external_tab_container_win.h
parent557daa507219947eda302f87dc5465616e4a0277 (diff)
downloadchromium_src-b888919c4ebb50770e1a4e17207576d8b61d7e72.zip
chromium_src-b888919c4ebb50770e1a4e17207576d8b61d7e72.tar.gz
chromium_src-b888919c4ebb50770e1a4e17207576d8b61d7e72.tar.bz2
Handle the ViewHostMsg_FindReply message which is sent by content(renderer) via the TabContentsDelegate.
The other change is to remove an unused Browser member from the ExternalTabContainer class. BUG=87335 Review URL: http://codereview.chromium.org/7828025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99275 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/external_tab_container_win.h')
-rw-r--r--chrome/browser/external_tab_container_win.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/external_tab_container_win.h b/chrome/browser/external_tab_container_win.h
index 76aaf58..e87ca0e 100644
--- a/chrome/browser/external_tab_container_win.h
+++ b/chrome/browser/external_tab_container_win.h
@@ -176,6 +176,12 @@ class ExternalTabContainer : public TabContentsDelegate,
const string16& type,
const string16& data,
int intent_id);
+ virtual void FindReply(TabContents* tab,
+ int request_id,
+ int number_of_matches,
+ const gfx::Rect& selection_rect,
+ int active_match_ordinal,
+ bool final_update);
void RegisterRenderViewHost(RenderViewHost* render_view_host);
void UnregisterRenderViewHost(RenderViewHost* render_view_host);
@@ -289,9 +295,6 @@ class ExternalTabContainer : public TabContentsDelegate,
// whether top level URL requests are to be handled by the automation client.
bool handle_top_level_requests_;
- // Scoped browser object for this ExternalTabContainer instance.
- scoped_ptr<Browser> browser_;
-
// Contains ExternalTabContainers that have not been connected to as yet.
static base::LazyInstance<PendingTabs> pending_tabs_;