diff options
Diffstat (limited to 'chrome/browser/extensions/extension_module.h')
-rw-r--r-- | chrome/browser/extensions/extension_module.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chrome/browser/extensions/extension_module.h b/chrome/browser/extensions/extension_module.h new file mode 100644 index 0000000..21227a2 --- /dev/null +++ b/chrome/browser/extensions/extension_module.h @@ -0,0 +1,20 @@ +// Copyright (c) 2010 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_MODULE_H__ +#define CHROME_BROWSER_EXTENSIONS_EXTENSION_MODULE_H__ +#pragma once + +#include "chrome/browser/extensions/extension_function.h" + +class ExtensionPrefs; + +class SetUpdateUrlDataFunction : public SyncExtensionFunction { + protected: + ExtensionPrefs* extension_prefs(); + virtual bool RunImpl(); + DECLARE_EXTENSION_FUNCTION_NAME("extension.setUpdateUrlData"); +}; + +#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MODULE_H__ |