blob: 1b239d728425fa240ffa8a7c30c54465dfb53466 [file] [log] [blame]
// Copyright 2017 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 EXTENSIONS_COMMON_MANIFEST_HANDLERS_ACTION_HANDLERS_HANDLER_H_
#define EXTENSIONS_COMMON_MANIFEST_HANDLERS_ACTION_HANDLERS_HANDLER_H_
#include <set>
#include <string>
#include <vector>
#include "base/macros.h"
#include "extensions/common/api/app_runtime.h"
#include "extensions/common/extension.h"
#include "extensions/common/manifest_handler.h"
namespace extensions {
struct ActionHandlersInfo : public Extension::ManifestData {
// Returns true if the given |extension| has an action handler for
// |action_type|.
static bool HasActionHandler(const Extension* extension,
api::app_runtime::ActionType action_type);
static bool HasLockScreenActionHandler(
const Extension* extension,
api::app_runtime::ActionType action_type);
ActionHandlersInfo();
~ActionHandlersInfo() override;
std::set<api::app_runtime::ActionType> action_handlers;
std::set<api::app_runtime::ActionType> lock_screen_action_handlers;
};
// Parses the "action_handlers" manifest key.
class ActionHandlersHandler : public ManifestHandler {
public:
ActionHandlersHandler();
~ActionHandlersHandler() override;
bool Parse(Extension* extension, base::string16* error) override;
private:
base::span<const char* const> Keys() const override;
DISALLOW_COPY_AND_ASSIGN(ActionHandlersHandler);
};
} // namespace extensions
#endif // EXTENSIONS_COMMON_MANIFEST_HANDLERS_ACTION_HANDLERS_HANDLER_H_