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

Side by Side Diff: chrome/browser/ui/cocoa/web_intent_bubble_controller.h

Issue 9581041: Make web intents picker work as constrained dialog instead of InfoBubble (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unneeded code Created 8 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/web_intent_bubble_controller.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/web_intent_bubble_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698