| OLD | NEW |
| 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 #import "chrome/browser/ui/cocoa/confirm_bubble_controller.h" | 5 #import "chrome/browser/ui/cocoa/confirm_bubble_controller.h" |
| 6 | 6 |
| 7 #include "base/mac/mac_util.h" | 7 #include "base/mac/mac_util.h" |
| 8 #include "base/strings/sys_string_conversions.h" | 8 #include "base/strings/sys_string_conversions.h" |
| 9 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 9 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
| 10 #import "chrome/browser/ui/cocoa/confirm_bubble_cocoa.h" | 10 #import "chrome/browser/ui/cocoa/confirm_bubble_cocoa.h" |
| 11 #import "chrome/browser/ui/confirm_bubble_model.h" | 11 #import "chrome/browser/ui/confirm_bubble_model.h" |
| 12 #include "ui/gfx/image/image.h" | 12 #include "ui/gfx/image/image.h" |
| 13 #include "ui/gfx/point.h" | 13 #include "ui/gfx/point.h" |
| 14 | 14 |
| 15 @implementation ConfirmBubbleController | 15 @implementation ConfirmBubbleController |
| 16 | 16 |
| 17 - (id)initWithParent:(NSView*)parent | 17 - (id)initWithParent:(NSView*)parent |
| 18 origin:(CGPoint)origin | 18 origin:(CGPoint)origin |
| 19 model:(ConfirmBubbleModel*)model { | 19 model:(scoped_ptr<ConfirmBubbleModel>)model { |
| 20 if ((self = [super initWithNibName:nil bundle:nil])) { | 20 if ((self = [super initWithNibName:nil bundle:nil])) { |
| 21 parent_ = parent; | 21 parent_ = parent; |
| 22 origin_ = origin; | 22 origin_ = origin; |
| 23 model_.reset(model); | 23 model_ = model.Pass(); |
| 24 } | 24 } |
| 25 return self; | 25 return self; |
| 26 } | 26 } |
| 27 | 27 |
| 28 - (void)loadView { | 28 - (void)loadView { |
| 29 [self setView:[[[ConfirmBubbleCocoa alloc] initWithParent:parent_ | 29 [self setView:[[[ConfirmBubbleCocoa alloc] initWithParent:parent_ |
| 30 controller:self] autorelease]]; | 30 controller:self] autorelease]]; |
| 31 } | 31 } |
| 32 | 32 |
| 33 - (void)windowWillClose:(NSNotification*)notification { | 33 - (void)windowWillClose:(NSNotification*)notification { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 - (void)cancel { | 83 - (void)cancel { |
| 84 model_->Cancel(); | 84 model_->Cancel(); |
| 85 } | 85 } |
| 86 | 86 |
| 87 - (void)linkClicked { | 87 - (void)linkClicked { |
| 88 model_->LinkClicked(); | 88 model_->LinkClicked(); |
| 89 } | 89 } |
| 90 | 90 |
| 91 @end | 91 @end |
| OLD | NEW |