| Index: chrome/browser/extensions/extension_tabs_module.h
|
| diff --git a/chrome/browser/extensions/extension_tabs_module.h b/chrome/browser/extensions/extension_tabs_module.h
|
| index a0d53c8cbd640960dc6c83842b2613c0f3a05726..eccd8236bd84585e8fb63a9b0f737588ffdae3e3 100644
|
| --- a/chrome/browser/extensions/extension_tabs_module.h
|
| +++ b/chrome/browser/extensions/extension_tabs_module.h
|
| @@ -13,6 +13,7 @@
|
|
|
| class Browser;
|
| class DictionaryValue;
|
| +class ListValue;
|
| class TabContents;
|
| class TabStripModel;
|
|
|
| @@ -30,10 +31,13 @@ class ExtensionTabUtil {
|
| static TabStatus GetTabStatus(const TabContents* tab_contents);
|
| static std::string GetTabStatusText(TabStatus status);
|
| static int GetWindowIdOfTab(const TabContents* tab_contents);
|
| + static ListValue* CreateTabList(const Browser* browser);
|
| static DictionaryValue* CreateTabValue(const TabContents* tab_contents);
|
| static DictionaryValue* CreateTabValue(const TabContents* tab_contents,
|
| TabStripModel* tab_strip,
|
| int tab_index);
|
| + static DictionaryValue* CreateWindowValue(const Browser* browser,
|
| + bool populate_tabs);
|
|
|
| // Any out parameter (|browser|, |tab_strip|, |contents|, & |tab_index|) may
|
| // be NULL and will not be set within the function.
|
|
|