| 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..be40fa6e12690b0ed2214f2c5141576cb456bd10
|
| --- /dev/null
|
| +++ b/chrome/common/extensions/api/content_scripts/content_scripts_handler.h
|
| @@ -0,0 +1,47 @@
|
| +// Copyright (c) 2013 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 {
|
| + ContentScriptsInfo();
|
| + virtual ~ContentScriptsInfo();
|
| +
|
| + // 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(Extension* extension, string16* error) OVERRIDE;
|
| + virtual bool Validate(const Extension* extension,
|
| + std::string* error,
|
| + std::vector<InstallWarning>* warnings) const OVERRIDE;
|
| +
|
| + private:
|
| + virtual const std::vector<std::string> Keys() const OVERRIDE;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(ContentScriptsHandler);
|
| +};
|
| +
|
| +} // namespace extensions
|
| +
|
| +#endif // CHROME_COMMON_EXTENSIONS_API_CONTENT_SCRIPTS_CONTENT_SCRIPTS_HANDLER_H_
|
|
|