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

Unified Diff: components/password_manager/core/browser/password_store_sync.h

Issue 1066543004: Update affiliated web credentials when Android credentials are updated. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the correct MessageLoopProxy occurrence this time. Created 5 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: components/password_manager/core/browser/password_store_sync.h
diff --git a/components/password_manager/core/browser/password_store_sync.h b/components/password_manager/core/browser/password_store_sync.h
index 731d338abc4d5fa3895f63b67ce9c698f483ba01..296e71167fe9034d14ce7fb6c7d3cf980a1be219 100644
--- a/components/password_manager/core/browser/password_store_sync.h
+++ b/components/password_manager/core/browser/password_store_sync.h
@@ -28,15 +28,15 @@ class PasswordStoreSync {
WARN_UNUSED_RESULT = 0;
// Synchronous implementation to add the given login.
- virtual PasswordStoreChangeList AddLoginImpl(
+ virtual PasswordStoreChangeList AddLoginSync(
const autofill::PasswordForm& form) = 0;
// Synchronous implementation to update the given login.
- virtual PasswordStoreChangeList UpdateLoginImpl(
+ virtual PasswordStoreChangeList UpdateLoginSync(
const autofill::PasswordForm& form) = 0;
// Synchronous implementation to remove the given login.
- virtual PasswordStoreChangeList RemoveLoginImpl(
+ virtual PasswordStoreChangeList RemoveLoginSync(
const autofill::PasswordForm& form) = 0;
// Notifies observers that password store data may have been changed.

Powered by Google App Engine
This is Rietveld 408576698