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

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

Issue 10542105: TabContentsWrapper -> TabContents, part 42. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 6 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/intents/web_intent_inline_disposition_delegate_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_SHEET_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_WEB_INTENT_SHEET_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_COCOA_WEB_INTENT_SHEET_CONTROLLER_H_ 6 #define CHROME_BROWSER_UI_COCOA_WEB_INTENT_SHEET_CONTROLLER_H_
7 #pragma once 7 #pragma once
8 8
9 #import <Cocoa/Cocoa.h> 9 #import <Cocoa/Cocoa.h>
10 10
(...skipping 24 matching lines...) Expand all
35 scoped_nsobject<NSButton> closeButton_; 35 scoped_nsobject<NSButton> closeButton_;
36 scoped_nsobject<NSMutableArray> intentButtons_; 36 scoped_nsobject<NSMutableArray> intentButtons_;
37 scoped_nsobject<NSView> flipView_; 37 scoped_nsobject<NSView> flipView_;
38 } 38 }
39 - (IBAction)installExtension:(id)sender; 39 - (IBAction)installExtension:(id)sender;
40 40
41 // Initialize the constrained dialog, and connect to picker. 41 // Initialize the constrained dialog, and connect to picker.
42 - (id)initWithPicker:(WebIntentPickerCocoa*)picker; 42 - (id)initWithPicker:(WebIntentPickerCocoa*)picker;
43 43
44 // Set the contents for inline disposition intents. 44 // Set the contents for inline disposition intents.
45 - (void)setInlineDispositionTabContents:(TabContents*)tab_contents; 45 - (void)setInlineDispositionTabContents:(TabContents*)tabContents;
46 46
47 // Set the size of the inline disposition view. 47 // Set the size of the inline disposition view.
48 - (void)setInlineDispositionFrameSize:(NSSize)size; 48 - (void)setInlineDispositionFrameSize:(NSSize)size;
49 49
50 - (void)performLayoutWithModel:(WebIntentPickerModel*)model; 50 - (void)performLayoutWithModel:(WebIntentPickerModel*)model;
51 51
52 // Sets the action string of the picker, e.g., 52 // Sets the action string of the picker, e.g.,
53 // "Which service should be used for sharing?". 53 // "Which service should be used for sharing?".
54 - (void)setActionString:(NSString*)actionString; 54 - (void)setActionString:(NSString*)actionString;
55 55
56 // Stop displaying throbber. Called when extension isntallation is complete. 56 // Stop displaying throbber. Called when extension isntallation is complete.
57 - (void)stopThrobber; 57 - (void)stopThrobber;
58 58
59 // Close the current sheet (and by extension, the constrained dialog). 59 // Close the current sheet (and by extension, the constrained dialog).
60 - (void)closeSheet; 60 - (void)closeSheet;
61 61
62 // Notification handler - called when sheet has been closed. 62 // Notification handler - called when sheet has been closed.
63 - (void)sheetDidEnd:(NSWindow*)sheet 63 - (void)sheetDidEnd:(NSWindow*)sheet
64 returnCode:(int)returnCode 64 returnCode:(int)returnCode
65 contextInfo:(void*)contextInfo; 65 contextInfo:(void*)contextInfo;
66 @end // WebIntentPickerSheetController 66 @end // WebIntentPickerSheetController
67 67
68 #endif // CHROME_BROWSER_UI_COCOA_WEB_INTENT_SHEET_CONTROLLER_H_ 68 #endif // CHROME_BROWSER_UI_COCOA_WEB_INTENT_SHEET_CONTROLLER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/intents/web_intent_inline_disposition_delegate_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698