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

Unified Diff: chrome/browser/ui/cocoa/extensions/chooser_dialog_cocoa_controller.h

Issue 2595083002: Change ChooserContentView[Cocoa] class name to be DeviceChooserContentView[Cocoa] (Closed)
Patch Set: merge master Created 3 years, 12 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/extensions/chooser_dialog_cocoa_controller.h
diff --git a/chrome/browser/ui/cocoa/extensions/chooser_dialog_cocoa_controller.h b/chrome/browser/ui/cocoa/extensions/chooser_dialog_cocoa_controller.h
index c9d5570d8fae93b4df7552f48c218ef72958a2ba..ef9ca9b29588912824b7d5f234c2184bab2d9f00 100644
--- a/chrome/browser/ui/cocoa/extensions/chooser_dialog_cocoa_controller.h
+++ b/chrome/browser/ui/cocoa/extensions/chooser_dialog_cocoa_controller.h
@@ -11,15 +11,16 @@
#include "base/mac/scoped_nsobject.h"
-@class ChooserContentViewCocoa;
class ChooserController;
class ChooserDialogCocoa;
+@class DeviceChooserContentViewCocoa;
// Displays a chooser dialog, and notifies the ChooserController
// of the selected option.
@interface ChooserDialogCocoaController
: NSViewController<NSTableViewDataSource, NSTableViewDelegate> {
- base::scoped_nsobject<ChooserContentViewCocoa> chooserContentView_;
+ base::scoped_nsobject<DeviceChooserContentViewCocoa>
+ deviceChooserContentView_;
NSTableView* tableView_; // Weak.
NSButton* connectButton_; // Weak.
NSButton* cancelButton_; // Weak.
@@ -40,8 +41,8 @@ initWithChooserDialogCocoa:(ChooserDialogCocoa*)chooserDialogCocoa
// Called when the "Cancel" button is pressed.
- (void)onCancel:(id)sender;
-// Gets the |chooserContentView_|. For testing only.
-- (ChooserContentViewCocoa*)chooserContentView;
+// Gets the |deviceChooserContentView_|. For testing only.
+- (DeviceChooserContentViewCocoa*)deviceChooserContentView;
@end

Powered by Google App Engine
This is Rietveld 408576698