chromium/extensions/common/manifest_handlers/automation.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef EXTENSIONS_COMMON_MANIFEST_HANDLERS_AUTOMATION_H_
#define EXTENSIONS_COMMON_MANIFEST_HANDLERS_AUTOMATION_H_

#include <memory>
#include <string>

#include "extensions/common/extension.h"
#include "extensions/common/manifest_handler.h"
#include "extensions/common/user_script.h"

namespace extensions {

namespace api::extensions_manifest_types {
struct Automation;
}

class AutomationManifestPermission;

// The parsed form of the automation manifest entry.
struct AutomationInfo : public Extension::ManifestData {};

// Parses the automation manifest entry.
class AutomationHandler : public ManifestHandler {};

}  // namespace extensions

#endif  // EXTENSIONS_COMMON_MANIFEST_HANDLERS_AUTOMATION_H_