| Index: chrome/browser/extensions/extension_tab_util_android.cc
|
| diff --git a/chrome/browser/extensions/extension_tab_util_android.cc b/chrome/browser/extensions/extension_tab_util_android.cc
|
| index 2d8d641a17b64cbd7e33a269bea023d694aeb995..2e0b51a98ca8dbe6ba429f746f1dcb356760e558 100644
|
| --- a/chrome/browser/extensions/extension_tab_util_android.cc
|
| +++ b/chrome/browser/extensions/extension_tab_util_android.cc
|
| @@ -32,26 +32,33 @@ int ExtensionTabUtil::GetWindowIdOfTab(const WebContents* web_contents) {
|
| return -1;
|
| }
|
|
|
| -DictionaryValue* ExtensionTabUtil::CreateTabValue(const WebContents* contents) {
|
| +DictionaryValue* ExtensionTabUtil::CreateTabValue(
|
| + const WebContents* contents,
|
| + const extensions::Extension* extension) {
|
| NOTIMPLEMENTED();
|
| return NULL;
|
| }
|
|
|
| -ListValue* ExtensionTabUtil::CreateTabList(const Browser* browser) {
|
| +ListValue* ExtensionTabUtil::CreateTabList(
|
| + const Browser* browser,
|
| + const extensions::Extension* extension) {
|
| NOTIMPLEMENTED();
|
| return NULL;
|
| }
|
|
|
| -DictionaryValue* ExtensionTabUtil::CreateTabValue(const WebContents* contents,
|
| - TabStripModel* tab_strip,
|
| - int tab_index) {
|
| +DictionaryValue* ExtensionTabUtil::CreateTabValue(
|
| + const WebContents* contents,
|
| + TabStripModel* tab_strip,
|
| + int tab_index,
|
| + const extensions::Extension* extension) {
|
| NOTIMPLEMENTED();
|
| return NULL;
|
| }
|
|
|
| DictionaryValue* ExtensionTabUtil::CreateTabValueActive(
|
| const WebContents* contents,
|
| - bool active) {
|
| + bool active,
|
| + const extensions::Extension* extension) {
|
| NOTIMPLEMENTED();
|
| return NULL;
|
| }
|
|
|