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

#ifndef CHROME_BROWSER_UI_WEBUI_EXTENSION_CONTROL_HANDLER_H_
#define CHROME_BROWSER_UI_WEBUI_EXTENSION_CONTROL_HANDLER_H_

#include "chrome/browser/ui/webui/settings/settings_page_ui_handler.h"

// A class that provides a message handler that disables extensions, intended
// for use in, for example, settings pages or password manager.
class ExtensionControlHandler : public content::WebUIMessageHandler {
 public:
  ExtensionControlHandler();

  ExtensionControlHandler(const ExtensionControlHandler&) = delete;
  ExtensionControlHandler& operator=(const ExtensionControlHandler&) = delete;

  ~ExtensionControlHandler() override;

  // WebUIMessageHandler:
  void RegisterMessages() override;

 private:
  // Handler for the "disableExtension" message. Extension ID is passed as the
  // single string argument.
  void HandleDisableExtension(const base::ListValue& args);
};

#endif  // CHROME_BROWSER_UI_WEBUI_EXTENSION_CONTROL_HANDLER_H_
