Index: components/autofill/content/renderer/password_form_conversion_utils.h |
diff --git a/content/public/renderer/password_form_conversion_utils.h b/components/autofill/content/renderer/password_form_conversion_utils.h |
similarity index 63% |
rename from content/public/renderer/password_form_conversion_utils.h |
rename to components/autofill/content/renderer/password_form_conversion_utils.h |
index 986963c61a84a72f29681ce1f1ae6df7776e0709..cdc344d3ddb7955b66c328618d2ac20b53b36ab9 100644 |
--- a/content/public/renderer/password_form_conversion_utils.h |
+++ b/components/autofill/content/renderer/password_form_conversion_utils.h |
@@ -2,27 +2,28 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef CONTENT_PUBLIC_RENDERER_PASSWORD_FORM_CONVERSION_UTILS_H_ |
-#define CONTENT_PUBLIC_RENDERER_PASSWORD_FORM_CONVERSION_UTILS_H_ |
+#ifndef COMPONENTS_AUTOFILL_CONTENT_RENDERER_PASSWORD_FORM_CONVERSION_UTILS_H_ |
+#define COMPONENTS_AUTOFILL_CONTENT_RENDERER_PASSWORD_FORM_CONVERSION_UTILS_H_ |
#include "base/memory/scoped_ptr.h" |
-#include "content/common/content_export.h" |
+ |
+namespace content { |
+struct PasswordForm; |
+} |
namespace WebKit { |
class WebFormElement; |
} |
-namespace content { |
- |
-struct PasswordForm; |
+namespace autofill { |
// Create a PasswordForm from DOM form. Webkit doesn't allow storing |
// custom metadata to DOM nodes, so we have to do this every time an event |
// happens with a given form and compare against previously Create'd forms |
// to identify..which sucks. |
-CONTENT_EXPORT scoped_ptr<PasswordForm> CreatePasswordForm( |
+scoped_ptr<content::PasswordForm> CreatePasswordForm( |
const WebKit::WebFormElement& form); |
-} // namespace content |
+} // namespace autofill |
-#endif // CONTENT_PUBLIC_RENDERER_PASSWORD_FORM_CONVERSION_UTILS_H__ |
+#endif // COMPONENTS_AUTOFILL_CONTENT_RENDERER_PASSWORD_FORM_CONVERSION_UTILS_H__ |