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

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

Issue 9310074: Switch to using WebIntentPickerModel, and bring picker closer to mocks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed review issues Created 8 years, 10 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_ 6 #define CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_
7 #pragma once 7 #pragma once
8 8
9 #import <Cocoa/Cocoa.h> 9 #import <Cocoa/Cocoa.h>
10 10
11 #include "base/memory/scoped_nsobject.h" 11 #include "base/memory/scoped_nsobject.h"
12 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" 12 #import "chrome/browser/ui/cocoa/base_bubble_controller.h"
13 #include "chrome/browser/ui/intents/web_intent_picker.h" 13 #include "chrome/browser/ui/intents/web_intent_picker.h"
14 14
15 class WebIntentPickerCocoa; 15 class WebIntentPickerCocoa;
16 class WebIntentPickerModel;
16 17
17 // Controller for intent picker bubble. This bubble pops up whenever a web 18 // Controller for intent picker bubble. This bubble pops up whenever a web
18 // page invokes ActivateIntent and lets the user choose which service should 19 // page invokes ActivateIntent and lets the user choose which service should
19 // be used to handle this action. 20 // be used to handle this action.
20 @interface WebIntentBubbleController : BaseBubbleController { 21 @interface WebIntentBubbleController : BaseBubbleController {
21 @private 22 @private
22 // Images for all icons shown in bubble.
23 scoped_nsobject<NSPointerArray> iconImages_;
24
25 // URLs associated with the individual services.
26 scoped_nsobject<NSArray> serviceURLs_;
27
28 // C++ <-> ObjectiveC bridge. Weak reference. 23 // C++ <-> ObjectiveC bridge. Weak reference.
29 WebIntentPickerCocoa* picker_; 24 WebIntentPickerCocoa* picker_;
30 25
31 // Inline disposition tab contents. Weak reference. 26 // Inline disposition tab contents. Weak reference.
32 TabContentsWrapper* contents_; 27 TabContentsWrapper* contents_;
33 } 28 }
34 29
35 // Initialize the window, and connect to bridge. 30 // Initialize the window, and connect to bridge.
36 - (id)initWithPicker:(WebIntentPickerCocoa*)picker 31 - (id)initWithPicker:(WebIntentPickerCocoa*)picker
37 parentWindow:(NSWindow*)parent 32 parentWindow:(NSWindow*)parent
38 anchoredAt:(NSPoint)point; 33 anchoredAt:(NSPoint)point;
39 34
40 // Replaces the |image| for service at |index|.
41 - (void)replaceImageAtIndex:(size_t)index withImage:(NSImage*)image;
42
43 // Set the service |urls| for all services.
44 - (void)setServiceURLs:(NSArray*)urls;
45
46 // Set the contents for inline disposition intents. 35 // Set the contents for inline disposition intents.
47 - (void)setInlineDispositionTabContents:(TabContentsWrapper*)wrapper; 36 - (void)setInlineDispositionTabContents:(TabContentsWrapper*)wrapper;
48 37
38 - (void)performLayoutWithModel:(WebIntentPickerModel*)model;
39
49 @end // WebIntentBubbleController 40 @end // WebIntentBubbleController
50 41
51 #endif // CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_ 42 #endif // CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698