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

Side by Side Diff: content/public/renderer/password_form_conversion_utils.h

Issue 23622013: Move password_form_conversion_utils out of //content into //autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@password_form_includes_removal
Patch Set: Add bug reference for components_browsertests Created 7 years, 3 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 unified diff | Download patch
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/password_form_conversion_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_PUBLIC_RENDERER_PASSWORD_FORM_CONVERSION_UTILS_H_
6 #define CONTENT_PUBLIC_RENDERER_PASSWORD_FORM_CONVERSION_UTILS_H_
7
8 #include "base/memory/scoped_ptr.h"
9 #include "content/common/content_export.h"
10
11 namespace WebKit {
12 class WebFormElement;
13 }
14
15 namespace content {
16
17 struct PasswordForm;
18
19 // Create a PasswordForm from DOM form. Webkit doesn't allow storing
20 // custom metadata to DOM nodes, so we have to do this every time an event
21 // happens with a given form and compare against previously Create'd forms
22 // to identify..which sucks.
23 CONTENT_EXPORT scoped_ptr<PasswordForm> CreatePasswordForm(
24 const WebKit::WebFormElement& form);
25
26 } // namespace content
27
28 #endif // CONTENT_PUBLIC_RENDERER_PASSWORD_FORM_CONVERSION_UTILS_H__
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/password_form_conversion_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698