blob: 0b41559f3ec3d69f51b56ca725bb50271e2eba03 [file] [log] [blame]
// Copyright 2025 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_EXTENSIONS_EXTENSION_ERROR_UI_ANDROID_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_ERROR_UI_ANDROID_H_
#include "chrome/browser/extensions/extension_error_ui.h"
namespace extensions {
class ExtensionErrorUIAndroid : public ExtensionErrorUI {
public:
explicit ExtensionErrorUIAndroid(ExtensionErrorUI::Delegate* delegate);
ExtensionErrorUIAndroid(const ExtensionErrorUIAndroid&) = delete;
ExtensionErrorUIAndroid& operator=(const ExtensionErrorUIAndroid&) = delete;
~ExtensionErrorUIAndroid() override;
bool ShowErrorInBubbleView() override;
void ShowExtensions() override;
void Close() override;
private:
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ERROR_UI_ANDROID_H_