diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-17 14:00:12 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-17 14:00:12 +0000 |
commit | ca13a448f6b94379803a4846d0d41128b5d650f5 (patch) | |
tree | 01d2e0b3403cd9423b29892a1c021ed1516759c7 /content/public/browser/web_contents_delegate.h | |
parent | 93425b44c4ea18ca58e3f5585d92795628bc5355 (diff) | |
download | chromium_src-ca13a448f6b94379803a4846d0d41128b5d650f5.zip chromium_src-ca13a448f6b94379803a4846d0d41128b5d650f5.tar.gz chromium_src-ca13a448f6b94379803a4846d0d41128b5d650f5.tar.bz2 |
TabContents -> WebContentsImpl, part 16
Remove "tab contents".
BUG=105875
TEST=no change
Review URL: https://chromiumcodereview.appspot.com/9956154
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132571 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/browser/web_contents_delegate.h')
-rw-r--r-- | content/public/browser/web_contents_delegate.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/content/public/browser/web_contents_delegate.h b/content/public/browser/web_contents_delegate.h index b99890b..6e3c15e 100644 --- a/content/public/browser/web_contents_delegate.h +++ b/content/public/browser/web_contents_delegate.h @@ -77,7 +77,7 @@ class CONTENT_EXPORT WebContentsDelegate { virtual WebContents* OpenURLFromTab(WebContents* source, const OpenURLParams& params); - // Called to inform the delegate that the tab content's navigation state + // Called to inform the delegate that the WebContents's navigation state // changed. The |changed_flags| indicates the parts of the navigation state // that have been updated, and is any combination of the // |WebContents::InvalidateTypes| bits. @@ -125,7 +125,7 @@ class CONTENT_EXPORT WebContentsDelegate { // out so it can perform any cleanup necessary. virtual void SwappedOut(WebContents* source) {} - // Request the delegate to move this tab contents to the specified position + // Request the delegate to move this WebContents to the specified position // in screen coordinates. virtual void MoveContents(WebContents* source, const gfx::Rect& pos) {} @@ -233,7 +233,7 @@ class CONTENT_EXPORT WebContentsDelegate { // Returns true if the context menu command was handled virtual bool ExecuteContextMenuCommand(int command); - // Opens source view for given tab contents that is navigated to the given + // Opens source view for given WebContents that is navigated to the given // page url. virtual void ViewSourceForTab(WebContents* source, const GURL& page_url); @@ -267,13 +267,13 @@ class CONTENT_EXPORT WebContentsDelegate { // Returns true to allow WebContents to continue with the default processing. virtual bool OnGoToEntryOffset(int offset); - // Returns whether this tab contents should add the specified navigation to + // Returns whether this WebContents should add the specified navigation to // history. virtual bool ShouldAddNavigationToHistory( const history::HistoryAddPageArgs& add_page_args, NavigationType navigation_type); - // Returns the native window framing the view containing the tab contents. + // Returns the native window framing the view containing the WebContents. virtual gfx::NativeWindow GetFrameNativeWindow(); // Allows delegate to control whether a WebContents will be created. Returns |