| Index: chrome/common/extensions/api/content_scripts/content_scripts_handler.h
|
| diff --git a/chrome/common/extensions/api/content_scripts/content_scripts_handler.h b/chrome/common/extensions/api/content_scripts/content_scripts_handler.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0dc3777d22c3f39ae64aa023864d3aeaca6da6ef
|
| --- /dev/null
|
| +++ b/chrome/common/extensions/api/content_scripts/content_scripts_handler.h
|
| @@ -0,0 +1,38 @@
|
| +// Copyright (c) 2012 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_COMMON_EXTENSIONS_API_CONTENT_SCRIPTS_CONTENT_SCRIPTS_HANDLER_H_
|
| +#define CHROME_COMMON_EXTENSIONS_API_CONTENT_SCRIPTS_CONTENT_SCRIPTS_HANDLER_H_
|
| +
|
| +#include <string>
|
| +
|
| +#include "chrome/common/extensions/extension.h"
|
| +#include "chrome/common/extensions/manifest_handler.h"
|
| +#include "chrome/common/extensions/user_script.h"
|
| +
|
| +namespace extensions {
|
| +
|
| +struct ContentScriptsInfo : public Extension::ManifestData {
|
| + // Paths to the content scripts the extension contains (possibly empty).
|
| + UserScriptList content_scripts;
|
| +
|
| + // Returns the content scripts for the extension (if the extension has
|
| + // no content scripts, this returns an empty list).
|
| + static const UserScriptList& GetContentScripts(const Extension* extension);
|
| +};
|
| +
|
| +// Parses the "content_scripts" manifest key.
|
| +class ContentScriptsHandler : public ManifestHandler {
|
| + public:
|
| + ContentScriptsHandler();
|
| + virtual ~ContentScriptsHandler();
|
| +
|
| + virtual bool Parse(const base::Value* value,
|
| + Extension* extension,
|
| + string16* error) OVERRIDE;
|
| +};
|
| +
|
| +} // namespace extensions
|
| +
|
| +#endif // CHROME_COMMON_EXTENSIONS_API_CONTENT_SCRIPTS_CONTENT_SCRIPTS_HANDLER_H_
|
|
|