Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4998)

Unified Diff: chrome/browser/ui/tab_contents/core_tab_helper_delegate.h

Issue 10542010: TabContentsWrapper -> TabContents, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, rename Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/find_bar/find_backend_unittest.cc ('k') | chrome/browser/ui/tab_contents/tab_contents.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/tab_contents/core_tab_helper_delegate.h
diff --git a/chrome/browser/ui/tab_contents/core_tab_helper_delegate.h b/chrome/browser/ui/tab_contents/core_tab_helper_delegate.h
index 36614fd8f970036ab62c8c67f7856389c3fa0ad4..704f68e456d47e3dce2da464b7c5790c317ecd4c 100644
--- a/chrome/browser/ui/tab_contents/core_tab_helper_delegate.h
+++ b/chrome/browser/ui/tab_contents/core_tab_helper_delegate.h
@@ -9,18 +9,17 @@
#include "base/basictypes.h"
class TabContents;
-typedef TabContents TabContentsWrapper;
// Objects implement this interface to get notified about changes in the
-// TabContentsWrapper and to provide necessary functionality.
+// TabContents and to provide necessary functionality.
//
-// This is considered part of the TabContentsWrapper "core" interface. If a
-// piece of code interacts with TabContentWrappers, it is guaranteed that it
-// will need to handle all of these callbacks.
+// This is considered part of the TabContents "core" interface. If a piece of
+// code interacts with TabContent, it is guaranteed that it will need to handle
+// all of these callbacks.
class CoreTabHelperDelegate {
public:
- virtual void SwapTabContents(TabContentsWrapper* old_tc,
- TabContentsWrapper* new_tc) = 0;
+ virtual void SwapTabContents(TabContents* old_tc,
+ TabContents* new_tc) = 0;
protected:
virtual ~CoreTabHelperDelegate();
« no previous file with comments | « chrome/browser/ui/find_bar/find_backend_unittest.cc ('k') | chrome/browser/ui/tab_contents/tab_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698