| Index: chrome/browser/password_manager/password_store_consumer.h
|
| diff --git a/chrome/browser/password_manager/password_store_consumer.h b/chrome/browser/password_manager/password_store_consumer.h
|
| index 7d2ab8d26f40f83f4238e5d961c462995b55e644..87e7f4386311d006020c1dec6e7941a508fee383 100644
|
| --- a/chrome/browser/password_manager/password_store_consumer.h
|
| +++ b/chrome/browser/password_manager/password_store_consumer.h
|
| @@ -7,11 +7,9 @@
|
|
|
| #include "chrome/browser/common/cancelable_request.h"
|
|
|
| -namespace webkit {
|
| -namespace forms {
|
| +namespace content {
|
| struct PasswordForm;
|
| }
|
| -}
|
|
|
| // Reads from the PasswordStore are done asynchronously on a separate
|
| // thread. PasswordStoreConsumer provides the virtual callback method, which is
|
| @@ -26,7 +24,7 @@ class PasswordStoreConsumer {
|
| // anyway with an empty vector.
|
| virtual void OnPasswordStoreRequestDone(
|
| CancelableRequestProvider::Handle handle,
|
| - const std::vector<webkit::forms::PasswordForm*>& result) = 0;
|
| + const std::vector<content::PasswordForm*>& result) = 0;
|
|
|
| // The CancelableRequest framework needs both a callback (the
|
| // PasswordStoreConsumer::OnPasswordStoreRequestDone) as well as a
|
|
|