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

Side by Side Diff: components/infobars/test/infobar_test.cc

Issue 655143002: 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "base/logging.h" 5 #include "base/logging.h"
6 #include "base/memory/scoped_ptr.h" 6 #include "base/memory/scoped_ptr.h"
7 #include "components/infobars/core/confirm_infobar_delegate.h" 7 #include "components/infobars/core/confirm_infobar_delegate.h"
8 #include "components/infobars/core/infobar.h" 8 #include "components/infobars/core/infobar.h"
9 9
10 // Provides definitions of static variables and functions that are declared in 10 // Provides definitions of static variables and functions that are declared in
(...skipping 10 matching lines...) Expand all
21 const int infobars::InfoBar::kDefaultArrowTargetHalfWidth = 21 const int infobars::InfoBar::kDefaultArrowTargetHalfWidth =
22 kDefaultArrowTargetHeight; 22 kDefaultArrowTargetHeight;
23 const int infobars::InfoBar::kMaximumArrowTargetHalfWidth = 14; 23 const int infobars::InfoBar::kMaximumArrowTargetHalfWidth = 14;
24 const int infobars::InfoBar::kDefaultBarTargetHeight = 36; 24 const int infobars::InfoBar::kDefaultBarTargetHeight = 36;
25 #endif 25 #endif
26 26
27 // Some components' unittests exercise code that requires that 27 // Some components' unittests exercise code that requires that
28 // ConfirmInfoBarDelegate::CreateInfoBar() return a non-NULL infobar. 28 // ConfirmInfoBarDelegate::CreateInfoBar() return a non-NULL infobar.
29 scoped_ptr<infobars::InfoBar> ConfirmInfoBarDelegate::CreateInfoBar( 29 scoped_ptr<infobars::InfoBar> ConfirmInfoBarDelegate::CreateInfoBar(
30 scoped_ptr<ConfirmInfoBarDelegate> delegate) { 30 scoped_ptr<ConfirmInfoBarDelegate> delegate) {
31 return scoped_ptr<infobars::InfoBar>(new infobars::InfoBar( 31 return scoped_ptr<infobars::InfoBar>(new infobars::InfoBar(delegate.Pass()));
32 delegate.PassAs<infobars::InfoBarDelegate>()));
33 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698