diff options
Diffstat (limited to 'chrome/browser/extensions/extension_page_actions_module.h')
-rw-r--r-- | chrome/browser/extensions/extension_page_actions_module.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/chrome/browser/extensions/extension_page_actions_module.h b/chrome/browser/extensions/extension_page_actions_module.h new file mode 100644 index 0000000..b6e9d87 --- /dev/null +++ b/chrome/browser/extensions/extension_page_actions_module.h @@ -0,0 +1,14 @@ +// Copyright (c) 2009 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. + +#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PAGE_ACTIONS_MODULE_H_ +#define CHROME_BROWSER_EXTENSIONS_EXTENSION_PAGE_ACTIONS_MODULE_H_ + +#include "chrome/browser/extensions/extension_function.h" + +class EnablePageActionFunction : public SyncExtensionFunction { + virtual bool RunImpl(); +}; + +#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PAGE_ACTIONS_MODULE_H_ |