#ifndef CHROME_BROWSER_EXTENSIONS_COMMANDS_COMMAND_SERVICE_H_
#define CHROME_BROWSER_EXTENSIONS_COMMANDS_COMMAND_SERVICE_H_
#include <string>
#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"
#include "base/scoped_observation.h"
#include "extensions/browser/browser_context_keyed_api_factory.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_registry_observer.h"
#include "extensions/common/api/extension_action/action_info.h"
#include "extensions/common/command.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_id.h"
class Profile;
namespace content {
class BrowserContext;
}
namespace ui {
class Accelerator;
}
namespace user_prefs {
class PrefRegistrySyncable;
}
namespace extensions {
class CommandService : public BrowserContextKeyedAPI,
public ExtensionRegistryObserver { … };
template <>
void
BrowserContextKeyedAPIFactory<CommandService>::DeclareFactoryDependencies();
}
#endif