Index: trunk/src/chrome/browser/extensions/dev_mode_bubble_controller.cc |
=================================================================== |
--- trunk/src/chrome/browser/extensions/dev_mode_bubble_controller.cc (revision 275254) |
+++ trunk/src/chrome/browser/extensions/dev_mode_bubble_controller.cc (working copy) |
@@ -45,8 +45,7 @@ |
virtual void PerformAction(const ExtensionIdList& list) OVERRIDE; |
virtual void OnClose() OVERRIDE; |
virtual base::string16 GetTitle() const OVERRIDE; |
- virtual base::string16 GetMessageBody( |
- bool anchored_to_browser_action) const OVERRIDE; |
+ virtual base::string16 GetMessageBody() const OVERRIDE; |
virtual base::string16 GetOverflowText( |
const base::string16& overflow_count) const OVERRIDE; |
virtual base::string16 GetLearnMoreLabel() const OVERRIDE; |
@@ -103,8 +102,7 @@ |
return l10n_util::GetStringUTF16(IDS_EXTENSIONS_DISABLE_DEVELOPER_MODE_TITLE); |
} |
-base::string16 DevModeBubbleDelegate::GetMessageBody( |
- bool anchored_to_browser_action) const { |
+base::string16 DevModeBubbleDelegate::GetMessageBody() const { |
return l10n_util::GetStringUTF16(IDS_EXTENSIONS_DISABLE_DEVELOPER_MODE_BODY); |
} |