| Index: chrome/browser/ui/cocoa/website_settings/permission_bubble_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/website_settings/permission_bubble_controller.h b/chrome/browser/ui/cocoa/website_settings/permission_bubble_controller.h
|
| index d1c90006e3459fe384f725adf38684eda53fbb63..c9a2a58c32caa66f9a5ffe6c95882f9fe5d07ab5 100644
|
| --- a/chrome/browser/ui/cocoa/website_settings/permission_bubble_controller.h
|
| +++ b/chrome/browser/ui/cocoa/website_settings/permission_bubble_controller.h
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "base/mac/scoped_nsobject.h"
|
| #import "chrome/browser/ui/cocoa/base_bubble_controller.h"
|
| -#include "chrome/browser/ui/website_settings/permission_bubble_view.h"
|
| +#include "chrome/browser/ui/website_settings/permission_prompt.h"
|
| #include "ui/base/models/simple_menu_model.h"
|
|
|
| @class MenuController;
|
| @@ -21,7 +21,7 @@ class PermissionRequest;
|
| base::scoped_nsobject<NSMutableArray> checkboxes_;
|
|
|
| // Delegate to be informed of user actions.
|
| - PermissionBubbleView::Delegate* delegate_; // Weak.
|
| + PermissionPrompt::Delegate* delegate_; // Weak.
|
|
|
| // Used to determine the correct anchor location and parent window.
|
| Browser* browser_; // Weak.
|
| @@ -44,7 +44,7 @@ class PermissionRequest;
|
|
|
| // Makes the bubble visible. The bubble will be popuplated with text retrieved
|
| // from |requests|. |delegate| will receive callbacks for user actions.
|
| -- (void)showWithDelegate:(PermissionBubbleView::Delegate*)delegate
|
| +- (void)showWithDelegate:(PermissionPrompt::Delegate*)delegate
|
| forRequests:(const std::vector<PermissionRequest*>&)requests
|
| acceptStates:(const std::vector<bool>&)acceptStates;
|
|
|
|
|