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

Unified Diff: chrome/browser/ui/webui/signin/login_ui_service_factory.cc

Issue 10692021: Remove browser::FindLastActiveWithProfile call in login_ui_service.cc by plumbing the Browser* thro… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 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/webui/signin/login_ui_service_factory.cc
===================================================================
--- chrome/browser/ui/webui/signin/login_ui_service_factory.cc (revision 144404)
+++ chrome/browser/ui/webui/signin/login_ui_service_factory.cc (working copy)
@@ -30,7 +30,6 @@
ProfileKeyedService* LoginUIServiceFactory::BuildServiceInstanceFor(
Profile* profile) const {
- LoginUIService* service = new LoginUIService(profile);
- return service;
+ return new LoginUIService();
}

Powered by Google App Engine
This is Rietveld 408576698