| Index: content/renderer/render_view_impl.cc
|
| diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
|
| index 0077530b648ba8986def93dec2e2427f93d56593..10cde91b493a2e7898098ab76d739024d7192123 100644
|
| --- a/content/renderer/render_view_impl.cc
|
| +++ b/content/renderer/render_view_impl.cc
|
| @@ -53,10 +53,13 @@
|
| #include "content/public/common/content_switches.h"
|
| #include "content/public/common/context_menu_params.h"
|
| #include "content/public/common/file_chooser_params.h"
|
| +#include "content/public/common/form_data.h"
|
| +#include "content/public/common/form_field.h"
|
| #include "content/public/common/url_constants.h"
|
| #include "content/public/renderer/content_renderer_client.h"
|
| #include "content/public/renderer/document_state.h"
|
| #include "content/public/renderer/navigation_state.h"
|
| +#include "content/public/renderer/password_form_dom_manager.h"
|
| #include "content/public/renderer/render_view_observer.h"
|
| #include "content/public/renderer/render_view_visitor.h"
|
| #include "content/renderer/browser_plugin/browser_plugin.h"
|
| @@ -181,9 +184,6 @@
|
| #include "v8/include/v8.h"
|
| #include "webkit/appcache/web_application_cache_host_impl.h"
|
| #include "webkit/dom_storage/dom_storage_types.h"
|
| -#include "webkit/forms/form_data.h"
|
| -#include "webkit/forms/form_field.h"
|
| -#include "webkit/forms/password_form_dom_manager.h"
|
| #include "webkit/glue/alt_error_page_resource_fetcher.h"
|
| #include "webkit/glue/dom_operations.h"
|
| #include "webkit/glue/glue_serialize.h"
|
| @@ -320,7 +320,10 @@ using appcache::WebApplicationCacheHostImpl;
|
| using base::Time;
|
| using base::TimeDelta;
|
| using content::DocumentState;
|
| +using content::FormField;
|
| using content::NavigationState;
|
| +using content::PasswordForm;
|
| +using content::PasswordFormDomManager;
|
| using content::Referrer;
|
| using content::RenderThread;
|
| using content::RenderViewObserver;
|
| @@ -328,9 +331,6 @@ using content::RenderViewVisitor;
|
| using content::RendererAccessibilityComplete;
|
| using content::RendererAccessibilityFocusOnly;
|
| using content::V8ValueConverter;
|
| -using webkit::forms::FormField;
|
| -using webkit::forms::PasswordForm;
|
| -using webkit::forms::PasswordFormDomManager;
|
| using webkit_glue::AltErrorPageResourceFetcher;
|
| using webkit_glue::ResourceFetcher;
|
| using webkit_glue::WebPreferences;
|
|
|