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

Unified Diff: chrome/browser/ui/webui/options/password_manager_handler.h

Issue 11000016: Move forms/ out of webkit/. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Response to review Created 8 years, 2 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/options/password_manager_handler.h
diff --git a/chrome/browser/ui/webui/options/password_manager_handler.h b/chrome/browser/ui/webui/options/password_manager_handler.h
index 1990737983365990df7acb277c54533804df22f4..f7b7fc9e42c93cd650bcd74c30f9c44be2f09311 100644
--- a/chrome/browser/ui/webui/options/password_manager_handler.h
+++ b/chrome/browser/ui/webui/options/password_manager_handler.h
@@ -14,11 +14,9 @@
#include "chrome/browser/password_manager/password_store_consumer.h"
#include "chrome/browser/ui/webui/options/options_ui.h"
-namespace webkit {
-namespace forms {
+namespace content {
struct PasswordForm;
}
-}
namespace options {
@@ -83,7 +81,7 @@ class PasswordManagerHandler : public OptionsPageUIHandler,
// Send the password store's reply back to the handler.
virtual void OnPasswordStoreRequestDone(
CancelableRequestProvider::Handle handle,
- const std::vector<webkit::forms::PasswordForm*>& result) = 0;
+ const std::vector<content::PasswordForm*>& result) = 0;
protected:
PasswordManagerHandler* page_;
@@ -101,7 +99,7 @@ class PasswordManagerHandler : public OptionsPageUIHandler,
// Send the password store's reply back to the handler.
virtual void OnPasswordStoreRequestDone(
CancelableRequestProvider::Handle handle,
- const std::vector<webkit::forms::PasswordForm*>& result) OVERRIDE;
+ const std::vector<content::PasswordForm*>& result) OVERRIDE;
};
// A short class to mediate requests to the password store for exceptions.
@@ -115,15 +113,15 @@ class PasswordManagerHandler : public OptionsPageUIHandler,
// Send the password store's reply back to the handler.
virtual void OnPasswordStoreRequestDone(
CancelableRequestProvider::Handle handle,
- const std::vector<webkit::forms::PasswordForm*>& result) OVERRIDE;
+ const std::vector<content::PasswordForm*>& result) OVERRIDE;
};
// Password store consumer for populating the password list and exceptions.
PasswordListPopulater populater_;
PasswordExceptionListPopulater exception_populater_;
- ScopedVector<webkit::forms::PasswordForm> password_list_;
- ScopedVector<webkit::forms::PasswordForm> password_exception_list_;
+ ScopedVector<content::PasswordForm> password_list_;
+ ScopedVector<content::PasswordForm> password_exception_list_;
// User's pref
std::string languages_;

Powered by Google App Engine
This is Rietveld 408576698