1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
// Copyright 2023 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_VIEWS_PERMISSIONS_PERMISSION_PROMPT_BUBBLE_BASE_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_PERMISSIONS_PERMISSION_PROMPT_BUBBLE_BASE_VIEW_H_
#include <string>
#include "base/memory/raw_ptr.h"
#include "base/time/time.h"
#include "chrome/browser/ui/url_identity.h"
#include "chrome/browser/ui/views/permissions/permission_prompt_base_view.h"
#include "chrome/browser/ui/views/permissions/permission_prompt_style.h"
#include "chrome/grit/generated_resources.h"
#include "components/permissions/permission_prompt.h"
#include "components/permissions/permission_util.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/bubble/bubble_dialog_delegate_view.h"
namespace permissions {
enum class PermissionAction;
enum class RequestType;
} // namespace permissions
class Browser;
constexpr int DISTANCE_BUTTON_VERTICAL = 8;
// Base bubble view that prompts the user to grant or deny a permission request
// from a website. Should not be used directly, instead create one of the more
// specific subclasses.
// ----------------------------------------------
// | [ X ]|
// | Prompt title |
// | ------------------------------------------ |
// | Extra text |
// | ------------------------------------------ |
// | [ Block ] [ Allow ] |
// ----------------------------------------------
class PermissionPromptBubbleBaseView : public PermissionPromptBaseView {
METADATA_HEADER(PermissionPromptBubbleBaseView, PermissionPromptBaseView)
public:
DECLARE_CLASS_ELEMENT_IDENTIFIER_VALUE(kMainViewId);
DECLARE_CLASS_ELEMENT_IDENTIFIER_VALUE(kBlockButtonElementId);
DECLARE_CLASS_ELEMENT_IDENTIFIER_VALUE(kAllowButtonElementId);
DECLARE_CLASS_ELEMENT_IDENTIFIER_VALUE(kAllowOnceButtonElementId);
PermissionPromptBubbleBaseView(
Browser* browser,
base::WeakPtr<permissions::PermissionPrompt::Delegate> delegate,
base::TimeTicks permission_requested_time,
PermissionPromptStyle prompt_style);
PermissionPromptBubbleBaseView(const PermissionPromptBubbleBaseView&) =
delete;
PermissionPromptBubbleBaseView& operator=(
const PermissionPromptBubbleBaseView&) = delete;
~PermissionPromptBubbleBaseView() override;
// Dialog button identifiers used to specify which buttons to show the user.
enum class PermissionDialogButton {
kAccept = 0,
kAcceptOnce = 1,
kDeny = 2,
kNum = kDeny,
};
virtual void Show();
// Anchors the bubble to the view or rectangle returned from
// bubble_anchor_util::GetPageInfoAnchorConfiguration.
void UpdateAnchorPosition();
void ShowWidget();
void ClosingPermission();
// views::BubbleDialogDelegateView:
bool ShouldShowCloseButton() const override;
// PermissionPromptBaseView:
void RunButtonCallback(int button_id) override;
std::u16string GetPermissionFragmentForTesting() const;
protected:
void CreatePermissionButtons(const std::u16string& allow_always_text,
const std::u16string& block_text);
void CreateExtraTextLabel(const std::u16string& extra_text);
void CreateWidget();
base::WeakPtr<permissions::PermissionPrompt::Delegate> delegate() const {
return delegate_;
}
// Determines whether the current request should also display an
// "Allow only this time" option in addition to the "Allow on every visit"
// option.
static bool IsOneTimePermission(
permissions::PermissionPrompt::Delegate& delegate);
PermissionDialogButton GetPermissionDialogButton(int button_id) {
return static_cast<PermissionDialogButton>(button_id);
}
private:
void SetPromptStyle(PermissionPromptStyle prompt_style);
// Convenience methods to convert enum class values to an int used as ViewId
// and vice-versa.
static int GetViewId(PermissionDialogButton button) {
return static_cast<int>(button);
}
base::WeakPtr<permissions::PermissionPrompt::Delegate> delegate_;
base::TimeTicks permission_requested_time_;
PermissionPromptStyle prompt_style_;
const bool is_one_time_permission_;
};
#endif // CHROME_BROWSER_UI_VIEWS_PERMISSIONS_PERMISSION_PROMPT_BUBBLE_BASE_VIEW_H_
|