| Index: chrome/browser/extensions/api/tabs/tabs.h
|
| diff --git a/chrome/browser/extensions/api/tabs/tabs.h b/chrome/browser/extensions/api/tabs/tabs.h
|
| index fab012486a38c0a3618b055086f4aa892ff94111..0fe56f8e3820b8e40e31ef1e1a4407e26f6fc1ea 100644
|
| --- a/chrome/browser/extensions/api/tabs/tabs.h
|
| +++ b/chrome/browser/extensions/api/tabs/tabs.h
|
| @@ -19,7 +19,6 @@ class BackingStore;
|
| class GURL;
|
| class SkBitmap;
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
|
|
| namespace base {
|
| class DictionaryValue;
|
| @@ -125,7 +124,7 @@ class UpdateTabFunction : public AsyncExtensionFunction {
|
| bool* is_async);
|
| virtual void PopulateResult();
|
|
|
| - TabContentsWrapper* tab_contents_;
|
| + TabContents* tab_contents_;
|
|
|
| private:
|
| virtual bool RunImpl() OVERRIDE;
|
| @@ -177,7 +176,7 @@ class CaptureVisibleTabFunction : public AsyncExtensionFunction,
|
| virtual ~CaptureVisibleTabFunction() {}
|
| virtual bool RunImpl() OVERRIDE;
|
| virtual bool GetTabToCapture(content::WebContents** web_contents,
|
| - TabContentsWrapper** wrapper);
|
| + TabContents** tab_contents);
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) OVERRIDE;
|
|
|