Index: chrome/renderer/autofill/form_cache.h |
diff --git a/chrome/renderer/autofill/form_cache.h b/chrome/renderer/autofill/form_cache.h |
index 7acdec5e991417dacc94ce31a823decadab70813..43bd651eb8c03d673f4414a27d9eb031c5c28f0c 100644 |
--- a/chrome/renderer/autofill/form_cache.h |
+++ b/chrome/renderer/autofill/form_cache.h |
@@ -11,12 +11,8 @@ |
#include "base/string16.h" |
-namespace webkit { |
-namespace forms { |
struct FormData; |
struct FormDataPredictions; |
-} |
-} |
namespace WebKit { |
class WebDocument; |
@@ -36,7 +32,7 @@ class FormCache { |
// Scans the DOM in |frame| extracting and storing forms. |
// Returns a vector of the extracted forms. |
void ExtractForms(const WebKit::WebFrame& frame, |
- std::vector<webkit::forms::FormData>* forms); |
+ std::vector<FormData>* forms); |
// Resets the forms for the specified |frame|. |
void ResetFrame(const WebKit::WebFrame& frame); |
@@ -49,7 +45,7 @@ class FormCache { |
// field's overall predicted type. Also sets the title to include the field's |
// heuristic type, server type, and signature; as well as the form's signature |
// and the experiment id for the server predictions. |
- bool ShowPredictions(const webkit::forms::FormDataPredictions& form); |
+ bool ShowPredictions(const FormDataPredictions& form); |
private: |
// The cached web frames. |