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

Unified Diff: chrome/renderer/autofill/form_cache.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
« no previous file with comments | « chrome/renderer/autofill/form_autofill_util.cc ('k') | chrome/renderer/autofill/form_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « chrome/renderer/autofill/form_autofill_util.cc ('k') | chrome/renderer/autofill/form_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698