Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: chrome/browser/ui/views/website_settings/permission_prompt_impl.h

Issue 2182883002: Permissions: Rename PermissionBubbleView to PermissionPromptInterface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: thestig@ review Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSIONS_BUBBLE_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_PROMPT_IMPL_H_
6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSIONS_BUBBLE_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_PROMPT_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "chrome/browser/ui/website_settings/permission_bubble_view.h" 13 #include "chrome/browser/ui/website_settings/permission_prompt.h"
14 #include "ui/gfx/geometry/point.h" 14 #include "ui/gfx/geometry/point.h"
15 #include "ui/views/bubble/bubble_border.h" 15 #include "ui/views/bubble/bubble_border.h"
16 16
17 namespace views { 17 namespace views {
18 class View; 18 class View;
19 } 19 }
20 20
21 class Browser; 21 class Browser;
22 class PermissionsBubbleDialogDelegateView; 22 class PermissionsBubbleDialogDelegateView;
23 23
24 class PermissionBubbleViewViews : public PermissionBubbleView { 24 class PermissionPromptImpl : public PermissionPrompt {
25 public: 25 public:
26 explicit PermissionBubbleViewViews(Browser* browser); 26 explicit PermissionPromptImpl(Browser* browser);
27 ~PermissionBubbleViewViews() override; 27 ~PermissionPromptImpl() override;
28 28
29 // PermissionBubbleView: 29 // PermissionPrompt:
30 void SetDelegate(Delegate* delegate) override; 30 void SetDelegate(Delegate* delegate) override;
31 void Show(const std::vector<PermissionRequest*>& requests, 31 void Show(const std::vector<PermissionRequest*>& requests,
32 const std::vector<bool>& accept_state) override; 32 const std::vector<bool>& accept_state) override;
33 bool CanAcceptRequestUpdate() override; 33 bool CanAcceptRequestUpdate() override;
34 void Hide() override; 34 void Hide() override;
35 bool IsVisible() override; 35 bool IsVisible() override;
36 void UpdateAnchorPosition() override; 36 void UpdateAnchorPosition() override;
37 gfx::NativeWindow GetNativeWindow() override; 37 gfx::NativeWindow GetNativeWindow() override;
38 38
39 void Closing(); 39 void Closing();
(...skipping 10 matching lines...) Expand all
50 // Returns the anchor point to anchor the permission bubble to, as a fallback. 50 // Returns the anchor point to anchor the permission bubble to, as a fallback.
51 // Only used if GetAnchorView() returns nullptr. 51 // Only used if GetAnchorView() returns nullptr.
52 gfx::Point GetAnchorPoint(); 52 gfx::Point GetAnchorPoint();
53 // Returns the type of arrow to display on the permission bubble. 53 // Returns the type of arrow to display on the permission bubble.
54 views::BubbleBorder::Arrow GetAnchorArrow(); 54 views::BubbleBorder::Arrow GetAnchorArrow();
55 55
56 Browser* browser_; 56 Browser* browser_;
57 Delegate* delegate_; 57 Delegate* delegate_;
58 PermissionsBubbleDialogDelegateView* bubble_delegate_; 58 PermissionsBubbleDialogDelegateView* bubble_delegate_;
59 59
60 DISALLOW_COPY_AND_ASSIGN(PermissionBubbleViewViews); 60 DISALLOW_COPY_AND_ASSIGN(PermissionPromptImpl);
61 }; 61 };
62 62
63 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSIONS_BUBBLE_VIEW_H_ 63 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_PERMISSION_PROMPT_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.cc ('k') | chrome/browser/ui/views/website_settings/permission_prompt_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698