| Index: chrome/browser/extensions/extension_tab_util.h
|
| diff --git a/chrome/browser/extensions/extension_tab_util.h b/chrome/browser/extensions/extension_tab_util.h
|
| index de81e8ba807b547760adbb294335eddad69bd7f9..4e8e5c68c984d61c51057d08d14cbd91d92fa09d 100644
|
| --- a/chrome/browser/extensions/extension_tab_util.h
|
| +++ b/chrome/browser/extensions/extension_tab_util.h
|
| @@ -13,7 +13,6 @@
|
| class Browser;
|
| class GURL;
|
| class Profile;
|
| -class TabContents;
|
| class TabStripModel;
|
|
|
| namespace base {
|
| @@ -78,14 +77,14 @@ class ExtensionTabUtil {
|
| TabStripModel** tab_strip_model,
|
| int* tab_index);
|
| static bool GetDefaultTab(Browser* browser,
|
| - TabContents** contents,
|
| + content::WebContents** contents,
|
| int* tab_id);
|
| // Any out parameter (|browser|, |tab_strip|, |contents|, & |tab_index|) may
|
| // be NULL and will not be set within the function.
|
| static bool GetTabById(int tab_id, Profile* profile, bool incognito_enabled,
|
| Browser** browser,
|
| TabStripModel** tab_strip,
|
| - TabContents** contents,
|
| + content::WebContents** contents,
|
| int* tab_index);
|
|
|
| // Takes |url_string| and returns a GURL which is either valid and absolute
|
|
|