| Index: chrome/browser/extensions/script_badge_controller.h
|
| diff --git a/chrome/browser/extensions/script_badge_controller.h b/chrome/browser/extensions/script_badge_controller.h
|
| index d3bb4c8b0bf2888feea779d65f766b8cdeeabbaa..13281fe3728b23ce5712a15e2404fa06e1432954 100644
|
| --- a/chrome/browser/extensions/script_badge_controller.h
|
| +++ b/chrome/browser/extensions/script_badge_controller.h
|
| @@ -21,7 +21,6 @@
|
| class ExtensionAction;
|
| class ExtensionService;
|
| class GURL;
|
| -class TabContents;
|
|
|
| namespace base {
|
| class ListValue;
|
| @@ -53,7 +52,7 @@ class ScriptBadgeController
|
| public content::WebContentsObserver,
|
| public content::NotificationObserver {
|
| public:
|
| - explicit ScriptBadgeController(TabContents* tab_contents,
|
| + explicit ScriptBadgeController(content::WebContents* web_contents,
|
| ScriptExecutor* script_executor);
|
| virtual ~ScriptBadgeController();
|
|
|
| @@ -110,9 +109,6 @@ class ScriptBadgeController
|
| // whether any change was made.
|
| bool EraseExtension(const Extension* extension);
|
|
|
| - // Our parent TabContents.
|
| - TabContents* tab_contents_;
|
| -
|
| // The current extension actions in the order they appeared. These come from
|
| // calls to ExecuteScript or getAttention on the current frame.
|
| std::vector<ExtensionAction*> current_actions_;
|
|
|