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

Unified Diff: chrome/browser/automation/automation_provider_observers.h

Issue 10536058: TabContentsWrapper -> TabContents, part 6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: GetOwningTabContentsForWebContents 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
Index: chrome/browser/automation/automation_provider_observers.h
diff --git a/chrome/browser/automation/automation_provider_observers.h b/chrome/browser/automation/automation_provider_observers.h
index 246f3973a9142a307222073d7edd7bdfb1ed4cb8..1a76612b85bdc5bc8fce0fa7fbaccd2fb3ef4675 100644
--- a/chrome/browser/automation/automation_provider_observers.h
+++ b/chrome/browser/automation/automation_provider_observers.h
@@ -307,10 +307,10 @@ class TabCountChangeObserver : public TabStripModelObserver {
IPC::Message* reply_message,
int target_tab_count);
// Implementation of TabStripModelObserver.
- virtual void TabInsertedAt(TabContentsWrapper* contents,
+ virtual void TabInsertedAt(TabContents* contents,
int index,
bool foreground);
- virtual void TabDetachedAt(TabContentsWrapper* contents, int index);
+ virtual void TabDetachedAt(TabContents* contents, int index);
virtual void TabStripModelDeleted();
private:
@@ -671,7 +671,7 @@ class InfoBarCountObserver : public content::NotificationObserver {
public:
InfoBarCountObserver(AutomationProvider* automation,
IPC::Message* reply_message,
- TabContentsWrapper* tab_contents,
+ TabContents* tab_contents,
size_t target_count);
virtual ~InfoBarCountObserver();
@@ -688,7 +688,7 @@ class InfoBarCountObserver : public content::NotificationObserver {
content::NotificationRegistrar registrar_;
base::WeakPtr<AutomationProvider> automation_;
scoped_ptr<IPC::Message> reply_message_;
- TabContentsWrapper* tab_contents_;
+ TabContents* tab_contents_;
const size_t target_count_;
@@ -1318,7 +1318,7 @@ class PageSnapshotTaker : public TabEventObserver,
public:
PageSnapshotTaker(AutomationProvider* automation,
IPC::Message* reply_message,
- TabContentsWrapper* tab_contents,
+ TabContents* tab_contents,
const FilePath& path);
virtual ~PageSnapshotTaker();
@@ -1341,7 +1341,7 @@ class PageSnapshotTaker : public TabEventObserver,
base::WeakPtr<AutomationProvider> automation_;
scoped_ptr<IPC::Message> reply_message_;
- TabContentsWrapper* tab_contents_;
+ TabContents* tab_contents_;
FilePath image_path_;
content::NotificationRegistrar registrar_;

Powered by Google App Engine
This is Rietveld 408576698