blob: 474b575dc6e88c1ce65a9cd2c6e91dc91dfde0e0 [file] [log] [blame]
// Copyright 2019 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 CHROME_BROWSER_EXTENSIONS_API_AUTOMATION_INTERNAL_CHROME_AUTOMATION_INTERNAL_API_DELEGATE_H_
#define CHROME_BROWSER_EXTENSIONS_API_AUTOMATION_INTERNAL_CHROME_AUTOMATION_INTERNAL_API_DELEGATE_H_
#include "extensions/browser/api/automation_internal/automation_internal_api_delegate.h"
namespace extensions {
// A delegate for chrome specific automation api logic.
class ChromeAutomationInternalApiDelegate
: public AutomationInternalApiDelegate {
public:
ChromeAutomationInternalApiDelegate();
~ChromeAutomationInternalApiDelegate() override;
bool CanRequestAutomation(const Extension* extension,
const AutomationInfo* automation_info,
content::WebContents* contents) override;
bool GetTabById(int tab_id,
content::BrowserContext* browser_context,
bool include_incognito,
content::WebContents** contents,
std::string* error_msg) override;
int GetTabId(content::WebContents* contents) override;
content::WebContents* GetActiveWebContents(
UIThreadExtensionFunction* function) override;
void EnableDesktop() override;
ui::AXTreeID GetAXTreeID() override;
void SetEventBundleSink(ui::AXEventBundleSink* sink) override;
content::BrowserContext* GetActiveUserContext() override;
DISALLOW_COPY_AND_ASSIGN(ChromeAutomationInternalApiDelegate);
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_API_AUTOMATION_INTERNAL_CHROME_AUTOMATION_INTERNAL_API_DELEGATE_H_