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

Unified Diff: content/public/renderer/document_state.h

Issue 8680040: Group forms-related files in webkit/glue in a forms/ subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + another build fix Created 9 years 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
« no previous file with comments | « content/public/common/webkit_param_traits.cc ('k') | content/public/renderer/document_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/renderer/document_state.h
diff --git a/content/public/renderer/document_state.h b/content/public/renderer/document_state.h
index e54c37a7b920895fcb7028515890d9e9c1194619..74d0515e6dbe44632947dd1986771e1d297a71af 100644
--- a/content/public/renderer/document_state.h
+++ b/content/public/renderer/document_state.h
@@ -14,8 +14,13 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRequest.h"
-namespace webkit_glue {
+namespace webkit {
+namespace forms {
struct PasswordForm;
+}
+}
+
+namespace webkit_glue {
class AltErrorPageResourceFetcher;
}
@@ -162,10 +167,10 @@ class DocumentState : public WebKit::WebDataSource::ExtraData {
searchable_form_encoding_ = encoding;
}
- webkit_glue::PasswordForm* password_form_data() const {
+ webkit::forms::PasswordForm* password_form_data() const {
return password_form_data_.get();
}
- void set_password_form_data(webkit_glue::PasswordForm* data);
+ void set_password_form_data(webkit::forms::PasswordForm* data);
const std::string& security_info() const { return security_info_; }
void set_security_info(const std::string& security_info) {
@@ -238,7 +243,7 @@ class DocumentState : public WebKit::WebDataSource::ExtraData {
GURL searchable_form_url_;
std::string searchable_form_encoding_;
- scoped_ptr<webkit_glue::PasswordForm> password_form_data_;
+ scoped_ptr<webkit::forms::PasswordForm> password_form_data_;
std::string security_info_;
bool use_error_page_;
« no previous file with comments | « content/public/common/webkit_param_traits.cc ('k') | content/public/renderer/document_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698