chromium/extensions/common/command.h

// Copyright 2012 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_COMMAND_H_
#define EXTENSIONS_COMMON_COMMAND_H_

#include <map>
#include <string>

#include "base/values.h"
#include "ui/base/accelerators/accelerator.h"

namespace extensions {

class Command {};

// A mapping of command name (std::string) to a command object.
CommandMap;

}  // namespace extensions

#endif  // EXTENSIONS_COMMON_COMMAND_H_