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

Side by Side Diff: chrome/browser/ui/cocoa/infobars/alternate_nav_infobar_controller.mm

Issue 657333002: Use scoped_ptr::Pass instead of scoped_ptr::PassAs<T>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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/infobars/alternate_nav_infobar_controller.h" 5 #import "chrome/browser/ui/cocoa/infobars/alternate_nav_infobar_controller.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/strings/sys_string_conversions.h" 8 #include "base/strings/sys_string_conversions.h"
9 #include "chrome/browser/ui/cocoa/infobars/infobar_cocoa.h" 9 #include "chrome/browser/ui/cocoa/infobars/infobar_cocoa.h"
10 #include "chrome/browser/ui/omnibox/alternate_nav_infobar_delegate.h" 10 #include "chrome/browser/ui/omnibox/alternate_nav_infobar_delegate.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 static_cast<AlternateNavInfoBarDelegate*>([self delegate]); 53 static_cast<AlternateNavInfoBarDelegate*>([self delegate]);
54 if (delegate->LinkClicked(disposition)) 54 if (delegate->LinkClicked(disposition))
55 [self removeSelf]; 55 [self removeSelf];
56 } 56 }
57 57
58 @end 58 @end
59 59
60 // static 60 // static
61 scoped_ptr<infobars::InfoBar> AlternateNavInfoBarDelegate::CreateInfoBar( 61 scoped_ptr<infobars::InfoBar> AlternateNavInfoBarDelegate::CreateInfoBar(
62 scoped_ptr<AlternateNavInfoBarDelegate> delegate) { 62 scoped_ptr<AlternateNavInfoBarDelegate> delegate) {
63 scoped_ptr<InfoBarCocoa> infobar( 63 scoped_ptr<InfoBarCocoa> infobar(new InfoBarCocoa(delegate.Pass()));
64 new InfoBarCocoa(delegate.PassAs<infobars::InfoBarDelegate>()));
65 base::scoped_nsobject<AlternateNavInfoBarController> controller( 64 base::scoped_nsobject<AlternateNavInfoBarController> controller(
66 [[AlternateNavInfoBarController alloc] initWithInfoBar:infobar.get()]); 65 [[AlternateNavInfoBarController alloc] initWithInfoBar:infobar.get()]);
67 infobar->set_controller(controller); 66 infobar->set_controller(controller);
68 return infobar.PassAs<infobars::InfoBar>(); 67 return infobar.Pass();
69 } 68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698