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

Unified Diff: chrome/browser/ui/android/infobars/save_password_infobar.cc

Issue 240193003: Move Infobars core files to the Infobars component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nib name on mac Created 6 years, 8 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/android/infobars/save_password_infobar.cc
diff --git a/chrome/browser/ui/android/infobars/save_password_infobar.cc b/chrome/browser/ui/android/infobars/save_password_infobar.cc
index dc8325446698c8f8ce587b3d96f103ff0654c0f5..b262ee413bf436cb680aa05a30314dc0e32de9e8 100644
--- a/chrome/browser/ui/android/infobars/save_password_infobar.cc
+++ b/chrome/browser/ui/android/infobars/save_password_infobar.cc
@@ -13,9 +13,10 @@
// SavePasswordInfoBarDelegate-------------------------------------------------
// static
-scoped_ptr<InfoBar> SavePasswordInfoBarDelegate::CreateInfoBar(
+scoped_ptr<infobars::InfoBar> SavePasswordInfoBarDelegate::CreateInfoBar(
scoped_ptr<SavePasswordInfoBarDelegate> delegate) {
- return scoped_ptr<InfoBar>(new SavePasswordInfoBar(delegate.Pass()));
+ return scoped_ptr<infobars::InfoBar>(
+ new SavePasswordInfoBar(delegate.Pass()));
}
// SavePasswordInfoBar --------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698