| Index: chrome/browser/ui/cocoa/web_dialog_window_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/web_dialog_window_controller.h b/chrome/browser/ui/cocoa/web_dialog_window_controller.h
|
| index 9b7c8ca15fd53ec48ca83fef0195f396d4a3e7cf..288ad7527ba58be64654c9279330043ce72bf6f7 100644
|
| --- a/chrome/browser/ui/cocoa/web_dialog_window_controller.h
|
| +++ b/chrome/browser/ui/cocoa/web_dialog_window_controller.h
|
| @@ -17,16 +17,15 @@ class Browser;
|
| class WebDialogWindowDelegateBridge;
|
| class Profile;
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
|
|
| // This controller manages a dialog box with properties and HTML content taken
|
| // from a WebDialogDelegate object.
|
| @interface WebDialogWindowController : NSWindowController<NSWindowDelegate> {
|
| @private
|
| - // Order here is important, as tab_contents_ may send messages to
|
| + // Order here is important, as tabContents_ may send messages to
|
| // delegate_ when it gets destroyed.
|
| scoped_ptr<WebDialogWindowDelegateBridge> delegate_;
|
| - scoped_ptr<TabContentsWrapper> contentsWrapper_;
|
| + scoped_ptr<TabContents> tabContents_;
|
| }
|
|
|
| // Creates and shows an WebDialogWindowController with the given
|
|
|