diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 07:58:34 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 07:58:34 +0000 |
commit | 57c6a6579cf274fe37d6196931a3034d90da7113 (patch) | |
tree | ec42313580156ccc039b5fee714ee12259cb08ee /chrome/browser/tab_contents/render_view_context_menu.h | |
parent | b23c9e1f05d474adc327c85d87eacc77554976e0 (diff) | |
download | chromium_src-57c6a6579cf274fe37d6196931a3034d90da7113.zip chromium_src-57c6a6579cf274fe37d6196931a3034d90da7113.tar.gz chromium_src-57c6a6579cf274fe37d6196931a3034d90da7113.tar.bz2 |
Replace all occurrances of WebContents with TabContents.
Review URL: http://codereview.chromium.org/99177
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15194 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/render_view_context_menu.h')
-rw-r--r-- | chrome/browser/tab_contents/render_view_context_menu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/tab_contents/render_view_context_menu.h b/chrome/browser/tab_contents/render_view_context_menu.h index d6dfaf1..54c611f 100644 --- a/chrome/browser/tab_contents/render_view_context_menu.h +++ b/chrome/browser/tab_contents/render_view_context_menu.h @@ -11,12 +11,12 @@ #include "webkit/glue/window_open_disposition.h" class Profile; -class WebContents; +class TabContents; class RenderViewContextMenu { public: RenderViewContextMenu( - WebContents* web_contents, + TabContents* tab_contents, const ContextMenuParams& params); virtual ~RenderViewContextMenu(); @@ -86,7 +86,7 @@ class RenderViewContextMenu { bool IsDevCommandEnabled(int id) const; ContextMenuParams params_; - WebContents* source_web_contents_; + TabContents* source_tab_contents_; Profile* profile_; DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenu); |