OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_ | |
6 #define CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_ | |
7 #pragma once | |
8 | |
9 #import <Cocoa/Cocoa.h> | |
10 | |
11 #include "base/memory/scoped_nsobject.h" | |
12 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" | |
13 #include "chrome/browser/ui/intents/web_intent_picker.h" | |
14 | |
15 class WebIntentPickerCocoa; | |
16 class WebIntentPickerModel; | |
17 | |
18 // Controller for intent picker bubble. This bubble pops up whenever a web | |
19 // page invokes ActivateIntent and lets the user choose which service should | |
20 // be used to handle this action. | |
21 @interface WebIntentBubbleController : BaseBubbleController { | |
22 @private | |
23 // C++ <-> ObjectiveC bridge. Weak reference. | |
24 WebIntentPickerCocoa* picker_; | |
25 | |
26 // Inline disposition tab contents. Weak reference. | |
27 TabContentsWrapper* contents_; | |
28 } | |
29 | |
30 // Initialize the window, and connect to bridge. | |
31 - (id)initWithPicker:(WebIntentPickerCocoa*)picker | |
32 parentWindow:(NSWindow*)parent | |
33 anchoredAt:(NSPoint)point; | |
34 | |
35 // Set the contents for inline disposition intents. | |
36 - (void)setInlineDispositionTabContents:(TabContentsWrapper*)wrapper; | |
37 | |
38 - (void)performLayoutWithModel:(WebIntentPickerModel*)model; | |
39 | |
40 @end // WebIntentBubbleController | |
41 | |
42 #endif // CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_ | |
OLD | NEW |