| Index: chrome/browser/extensions/extension_page_actions_module.h
|
| diff --git a/chrome/browser/extensions/extension_page_actions_module.h b/chrome/browser/extensions/extension_page_actions_module.h
|
| index 658538236f8660d7818fe42e318a8a5002a96e45..733786649a543ee7d80b1968d37e577283a0cd4e 100644
|
| --- a/chrome/browser/extensions/extension_page_actions_module.h
|
| +++ b/chrome/browser/extensions/extension_page_actions_module.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -27,70 +27,70 @@ class PageActionFunction : public SyncExtensionFunction {
|
| // Implement chrome.pageActions.enableForTab().
|
| class EnablePageActionFunction : public PageActionFunction {
|
| virtual ~EnablePageActionFunction() {}
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("pageActions.enableForTab")
|
| };
|
|
|
| // Implement chrome.pageActions.disableForTab().
|
| class DisablePageActionFunction : public PageActionFunction {
|
| virtual ~DisablePageActionFunction() {}
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("pageActions.disableForTab")
|
| };
|
|
|
| // Implement chrome.pageActions.show().
|
| class PageActionShowFunction : public PageActionFunction {
|
| virtual ~PageActionShowFunction() {}
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("pageAction.show")
|
| };
|
|
|
| // Implement chrome.pageActions.hide().
|
| class PageActionHideFunction : public PageActionFunction {
|
| virtual ~PageActionHideFunction() {}
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("pageAction.hide")
|
| };
|
|
|
| // Implement chrome.pageActions.setIcon().
|
| class PageActionSetIconFunction : public PageActionFunction {
|
| virtual ~PageActionSetIconFunction() {}
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("pageAction.setIcon")
|
| };
|
|
|
| // Implement chrome.pageActions.setTitle().
|
| class PageActionSetTitleFunction : public PageActionFunction {
|
| virtual ~PageActionSetTitleFunction() {}
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("pageAction.setTitle")
|
| };
|
|
|
| // Implement chrome.pageActions.setPopup().
|
| class PageActionSetPopupFunction : public PageActionFunction {
|
| virtual ~PageActionSetPopupFunction() {}
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("pageAction.setPopup")
|
| };
|
|
|
| // Implement chrome.pageActions.setBadgeBackgroundColor().
|
| class PageActionSetBadgeBackgroundColorFunction : public PageActionFunction {
|
| virtual ~PageActionSetBadgeBackgroundColorFunction() {}
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("pageAction.setBadgeBackgroundColor")
|
| };
|
|
|
| // Implement chrome.pageActions.setBadgeTextColor().
|
| class PageActionSetBadgeTextColorFunction : public PageActionFunction {
|
| virtual ~PageActionSetBadgeTextColorFunction() {}
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("pageAction.setBadgeTextColor")
|
| };
|
|
|
| // Implement chrome.pageActions.setBadgeText().
|
| class PageActionSetBadgeTextFunction : public PageActionFunction {
|
| virtual ~PageActionSetBadgeTextFunction() {}
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("pageAction.setBadgeText")
|
| };
|
|
|
|
|