blob: 14663c7ae4d28706951967d6b929313fd632af9b [file] [log] [blame]
// Copyright 2022 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_DEVTOOLS_PROTOCOL_EMULATION_HANDLER_H_
#define CHROME_BROWSER_DEVTOOLS_PROTOCOL_EMULATION_HANDLER_H_
#include "chrome/browser/devtools/protocol/emulation.h"
#include "components/infobars/content/content_infobar_manager.h"
#include "components/infobars/core/infobar.h"
#include "content/public/browser/devtools_agent_host.h"
class EmulationHandler : public protocol::Emulation::Backend,
public infobars::InfoBarManager::Observer {
public:
EmulationHandler(content::DevToolsAgentHost* agent_host,
protocol::UberDispatcher* dispatcher);
~EmulationHandler() override;
EmulationHandler(const EmulationHandler&) = delete;
EmulationHandler& operator=(const EmulationHandler&) = delete;
// Emulation::Backend:
protocol::Response Disable() override;
protocol::Response SetAutomationOverride(bool enabled) override;
void OnInfoBarRemoved(infobars::InfoBar* infobar, bool animate) override;
private:
infobars::ContentInfoBarManager* GetContentInfoBarManager();
content::DevToolsAgentHost* agent_host_;
infobars::InfoBar* automation_info_bar_ = nullptr;
};
#endif // CHROME_BROWSER_DEVTOOLS_PROTOCOL_EMULATION_HANDLER_H_