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

Unified Diff: chrome/browser/password_manager/password_manager.cc

Issue 3461019: FBTF: Move virtual methods to implementation files. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Win+chromeos+mac fixes Created 10 years, 3 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/password_manager/password_manager.cc
diff --git a/chrome/browser/password_manager/password_manager.cc b/chrome/browser/password_manager/password_manager.cc
index d1041cbffe2f479e18f4e395f333be58b806337e..9933f8f772911c3ac32d8a67e8ee41d8bca106d9 100644
--- a/chrome/browser/password_manager/password_manager.cc
+++ b/chrome/browser/password_manager/password_manager.cc
@@ -122,6 +122,10 @@ void PasswordManager::ClearProvisionalSave() {
provisional_save_manager_.reset();
}
+void PasswordManager::SetObserver(LoginModelObserver* observer) {
+ observer_ = observer;
+}
+
void PasswordManager::DidStopLoading() {
if (!provisional_save_manager_.get())
return;

Powered by Google App Engine
This is Rietveld 408576698