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

Side by Side Diff: components/autofill/content/renderer/BUILD.gn

Issue 2746033004: Add password form search using blink::WebNode reference comparison. (Closed)
Patch Set: Rename ProvisionallySavedForm to ProvisionallySavedPasswordForm. Created 3 years, 9 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 static_library("renderer") { 5 static_library("renderer") {
6 sources = [ 6 sources = [
7 "autofill_agent.cc", 7 "autofill_agent.cc",
8 "autofill_agent.h", 8 "autofill_agent.h",
9 "form_autofill_util.cc", 9 "form_autofill_util.cc",
10 "form_autofill_util.h", 10 "form_autofill_util.h",
11 "form_cache.cc", 11 "form_cache.cc",
12 "form_cache.h", 12 "form_cache.h",
13 "form_classifier.cc", 13 "form_classifier.cc",
14 "form_classifier.h", 14 "form_classifier.h",
15 "page_click_listener.h", 15 "page_click_listener.h",
16 "page_click_tracker.cc", 16 "page_click_tracker.cc",
17 "page_click_tracker.h", 17 "page_click_tracker.h",
18 "password_autofill_agent.cc", 18 "password_autofill_agent.cc",
19 "password_autofill_agent.h", 19 "password_autofill_agent.h",
20 "password_form_conversion_utils.cc", 20 "password_form_conversion_utils.cc",
21 "password_form_conversion_utils.h", 21 "password_form_conversion_utils.h",
22 "password_generation_agent.cc", 22 "password_generation_agent.cc",
23 "password_generation_agent.h", 23 "password_generation_agent.h",
24 "provisionally_saved_password_form.cc",
25 "provisionally_saved_password_form.h",
24 "renderer_save_password_progress_logger.cc", 26 "renderer_save_password_progress_logger.cc",
25 "renderer_save_password_progress_logger.h", 27 "renderer_save_password_progress_logger.h",
26 ] 28 ]
27 29
28 deps = [ 30 deps = [
29 "//base", 31 "//base",
30 "//base:i18n", 32 "//base:i18n",
31 "//components/autofill/content/common:mojo_interfaces", 33 "//components/autofill/content/common:mojo_interfaces",
32 "//components/autofill/core/common", 34 "//components/autofill/core/common",
33 35
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 sources = [ 79 sources = [
78 "renderer_save_password_progress_logger_unittest.cc", 80 "renderer_save_password_progress_logger_unittest.cc",
79 ] 81 ]
80 82
81 deps = [ 83 deps = [
82 ":test_support", 84 ":test_support",
83 "//components/autofill/content/common:mojo_interfaces", 85 "//components/autofill/content/common:mojo_interfaces",
84 "//testing/gtest", 86 "//testing/gtest",
85 ] 87 ]
86 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698