blob: 330917d13671fd770a9c281e2640d3c1f082b259 [file] [log] [blame]
// Copyright 2013 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_DEV_MODE_BUBBLE_DELEGATE_H_
#define CHROME_BROWSER_EXTENSIONS_DEV_MODE_BUBBLE_DELEGATE_H_
#include <stddef.h>
#include <string>
#include "base/memory/raw_ptr.h"
#include "chrome/browser/extensions/extension_message_bubble_controller.h"
namespace extensions {
class Extension;
class DevModeBubbleDelegate
: public ExtensionMessageBubbleController::Delegate {
public:
explicit DevModeBubbleDelegate(Profile* profile);
DevModeBubbleDelegate(const DevModeBubbleDelegate&) = delete;
DevModeBubbleDelegate& operator=(const DevModeBubbleDelegate&) = delete;
~DevModeBubbleDelegate() override;
// ExtensionMessageBubbleController::Delegate methods.
bool ShouldIncludeExtension(const Extension* extension) override;
void AcknowledgeExtension(
const std::string& extension_id,
ExtensionMessageBubbleController::BubbleAction user_action) override;
void PerformAction(const ExtensionIdList& list) override;
std::u16string GetTitle() const override;
std::u16string GetMessageBody(bool anchored_to_browser_action,
int extension_count) const override;
std::u16string GetOverflowText(
const std::u16string& overflow_count) const override;
std::u16string GetLearnMoreLabel() const override;
GURL GetLearnMoreUrl() const override;
std::u16string GetActionButtonLabel() const override;
std::u16string GetDismissButtonLabel() const override;
bool ShouldCloseOnDeactivate() const override;
bool ShouldShow(const ExtensionIdList& extensions) const override;
void OnShown(const ExtensionIdList& extensions) override;
void OnAction() override;
void ClearProfileSetForTesting() override;
bool ShouldShowExtensionList() const override;
bool ShouldLimitToEnabledExtensions() const override;
bool SupportsPolicyIndicator() override;
private:
raw_ptr<Profile> profile_;
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_DEV_MODE_BUBBLE_DELEGATE_H_