HomeSort by relevance Sort by last modified time
    Searched full:autofill (Results 1 - 25 of 276) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/resources/options/
autofill_options.css 1 .autofill-list-item {
8 .autofill-list-item + img {
13 #autofill-options > div:last-child {
17 #autofill-options > div.settings-list > div:last-child {
22 #autofill-add-address,
23 #autofill-add-creditcard {
autofill_overlay.css 0 #autofill-edit-address-overlay {
5 #autofill-edit-credit-card-overlay {
25 #autofill-edit-address-overlay list#full-name-list {
29 #autofill-edit-address-overlay list#full-name-list div.static-text {
33 #autofill-edit-address-overlay list#full-name-list input {
46 #autofill-edit-address-overlay list {
52 #autofill-edit-address-overlay list div.static-text {
61 #autofill-edit-address-overlay list input {
autofill_edit_creditcard_overlay.html 1 <div class="page hidden" id="autofill-edit-credit-card-overlay">
2 <h1 id="autofill-credit-card-title"></h1>
25 <button type="reset" id="autofill-edit-credit-card-cancel-button"
27 <button type="submit" id="autofill-edit-credit-card-apply-button" disabled
autofill_options.html 1 <div id="autofill-options" class="page hidden">
6 <input pref="autofill.auxiliary_profiles_enabled" type="checkbox">
15 <button id="autofill-add-address" i18n-content="autofillAddAddress">
23 <button id="autofill-add-creditcard"
autofill_edit_address_overlay.html 1 <div class="page hidden" id="autofill-edit-address-overlay">
2 <h1 id="autofill-address-title"></h1>
14 <input type="text" class="autofill-form" id="company-name">
20 <input type="text" class="autofill-form" id="addr-line-1">
26 <input type="text" class="autofill-form" id="addr-line-2">
45 <input type="text" class="autofill-form" id="city">
48 <input type="text" class="autofill-form" id="state">
51 <input type="text" class="autofill-form" id="postal-code">
102 <button type="reset" id="autofill-edit-address-cancel-button"
104 <button type="submit" id="autofill-edit-address-apply-button" disable
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
autofill_migration.h 16 // The autofill profile is not migrated. Current sync should migrate the data
17 // by syncing down the old autofill and syncing profiles back up to the server
18 // as new autofill.
21 // We have migrated the autofill profile data. From now on autofill and
22 // autofill profiles are 2 seperate data types.
25 // The autofill datatype is being synced new.(either because this is a new
43 // will go away once we remove all the autofill migration code.
  /external/webkit/Source/WebCore/manual-tests/chromium/
no-autofill-on-readonly.html 5 <p>This page tests that the autofill popup is not shown for read-only and disabled text inputs.</p>
8 <li>Enter a name in the input text in Form 1 and press submit. This is so the autofill has a value for that field.</li>
9 <li>Reload the page so the input text is empty. Click twice on the Form 1 text input. An autofill popup with the name you entered previously should be shown.</li>
10 <li>Click twice on the Form 2 text input. No autofill popup should be shown.</li>
11 <li>Click twice on the Form 3 text input. No autofill popup should be shown.</li>
15 <form action="no-autofill-on-readonly.html">
21 <form action="no-autofill-on-readonly.html">
27 <form action="no-autofill-on-readonly.html">
  /external/chromium/chrome/browser/sync/glue/
autofill_model_associator.cc 14 #include "chrome/browser/autofill/autofill_profile.h"
82 if (node.InitByClientTagLookup(syncable::AUTOFILL, tag)) {
83 const sync_pb::AutofillSpecifics& autofill(node.GetAutofillSpecifics());
84 DCHECK_EQ(tag, KeyToTag(UTF8ToUTF16(autofill.name()),
85 UTF8ToUTF16(autofill.value())));
88 if (MergeTimestamps(autofill, ix->timestamps(), &timestamps)) {
93 if (!write_node.InitByClientTagLookup(syncable::AUTOFILL, tag)) {
94 LOG(ERROR) << "Failed to write autofill sync node.";
103 if (!node.InitUniqueByCreation(syncable::AUTOFILL,
105 LOG(ERROR) << "Failed to create autofill sync node."
    [all...]
autofill_change_processor.cc 12 #include "chrome/browser/autofill/personal_data_manager.h"
31 int64 id, const sync_pb::AutofillSpecifics& autofill)
34 autofill_(autofill) { }
74 "Server did not create the top-level autofill node. "
103 if (!sync_node.InitUniqueByCreation(syncable::AUTOFILL,
106 "Failed to create autofill sync node.");
142 "Autofill node lookup failed.");
179 "Bogus delete notification generate for autofill entry " + tag;
184 "Autofill node lookup failed.");
206 "Autofill root node lookup failed.")
215 const sync_pb::AutofillSpecifics& autofill = local
434 sync_pb::AutofillSpecifics autofill; local
    [all...]
autofill_change_processor.h 11 #include "chrome/browser/autofill/autofill_profile.h"
12 #include "chrome/browser/autofill/credit_card.h"
13 #include "chrome/browser/autofill/personal_data_manager.h"
61 // Copy the properties of the given Autofill entry into the sync
76 // A function to remove the sync node for an autofill entry or profile.
89 // for the respective autofill subtypes.
92 const sync_pb::AutofillSpecifics& autofill,
102 const sync_pb::AutofillSpecifics& autofill);
122 // changes to the autofill data in the WebDatabase.
autofill_profile_model_associator.cc 58 VLOG(2) << "[AUTOFILL MIGRATION]"
64 VLOG(2) << "[AUTOFILL MIGRATION] "
71 VLOG(1) << "[AUTOFILL MIGRATION]"
91 VLOG(2) << "[AUTOFILL MIGRATION]"
97 const sync_pb::AutofillProfileSpecifics& autofill(
99 if (OverwriteProfileWithServerData(*ix, autofill)) {
139 VLOG(1) << "Associating Autofill Models";
149 LOG(ERROR) << "Could not get the autofill data from WebDatabase.";
153 VLOG(1) << "[AUTOFILL MIGRATION]"
154 << " Now associating to the new autofill profile model associator
    [all...]
  /external/chromium/chrome/browser/autofill/
select_control_handler.h 9 #include "chrome/browser/autofill/field_types.h"
18 namespace autofill { namespace
32 } // namespace autofill
autofill_dialog.h 11 #include "chrome/browser/autofill/autofill_profile.h"
12 #include "chrome/browser/autofill/credit_card.h"
24 // An interface the AutoFill dialog uses to notify its clients (observers) when
25 // the user has applied changes to the AutoFill profile data.
40 // Shows the AutoFill dialog, which allows the user to edit profile information.
41 // |profile| is profile from which you can get vectors of autofill profiles that
fax_number.h 9 #include "chrome/browser/autofill/field_types.h"
10 #include "chrome/browser/autofill/phone_number.h"
autofill_field.h 13 #include "chrome/browser/autofill/field_types.h"
36 // This function automatically chooses between server and heuristic autofill
52 // The unique name of this field, generated by Autofill.
55 // The type of the field, as determined by the Autofill server.
autofill_metrics.cc 5 #include "chrome/browser/autofill/autofill_metrics.h"
9 #include "chrome/browser/autofill/autofill_type.h"
181 UMA_HISTOGRAM_ENUMERATION("Autofill.CreditCardInfoBar", metric,
188 LogTypeQualityMetric("Autofill.Quality.HeuristicType",
196 LogTypeQualityMetric("Autofill.Quality.PredictedType",
205 std::string histogram_name = "Autofill.Quality";
215 UMA_HISTOGRAM_ENUMERATION("Autofill.ServerQueryResponse", metric,
222 LogTypeQualityMetric("Autofill.Quality.ServerType",
228 UMA_HISTOGRAM_BOOLEAN("Autofill.IsEnabled.Startup", enabled);
232 UMA_HISTOGRAM_BOOLEAN("Autofill.IsEnabled.PageLoad", enabled)
    [all...]
contact_info_unittest.cc 5 #include "chrome/browser/autofill/contact_info.h"
10 #include "chrome/browser/autofill/autofill_type.h"
11 #include "chrome/browser/autofill/field_types.h"
select_control_handler_unittest.cc 6 #include "chrome/browser/autofill/autofill_profile.h"
7 #include "chrome/browser/autofill/autofill_type.h"
8 #include "chrome/browser/autofill/credit_card.h"
9 #include "chrome/browser/autofill/select_control_handler.h"
27 autofill::FillSelectControl(credit_card, CREDIT_CARD_EXP_MONTH, &field);
46 autofill::FillSelectControl(credit_card, CREDIT_CARD_EXP_MONTH, &field);
65 autofill::FillSelectControl(credit_card, CREDIT_CARD_EXP_MONTH, &field);
83 autofill::FillSelectControl(credit_card, CREDIT_CARD_EXP_MONTH, &field);
101 autofill::FillSelectControl(profile, ADDRESS_HOME_COUNTRY, &field);
119 autofill::FillSelectControl(profile, ADDRESS_HOME_COUNTRY, &field)
    [all...]
  /external/webkit/Source/WebCore/manual-tests/
autofill-popup-location.html 5 Test autofill popup window shows at the correct location.
9 <h3>Test autofill popup window shows at the correct location.</h3>
13 <li> Press 'a' and make sure 'Always show bookmarks bar' is shown in autofill popup window.</li>
  /external/chromium/chrome/browser/sync/protocol/
autofill_specifics.proto 5 // Sync protocol datatype extension for autofill.
19 // Properties of autofill sync objects.
68 // The label of the Autofill profile that contains the billing address.
71 // The label of the Autofill profile that contains the shipping address.
77 // that this entity represents a classic autofill object. In this case,
78 // none of the autofill++ objects below should be present.
83 // An autofill++ profile object. If present, indicates this entity
90 // an autofill++ CreditCard, and no other fields should be present.
91 // If encryption for autofill++ is not enabled, this is unused. See
95 // If encryption for autofill++ is not enabled, this field stores th
    [all...]
  /external/chromium/android/content/browser/tab_contents/
tab_contents.h 9 #include "android/autofill/profile_android.h"
12 #include "chrome/browser/autofill/autofill_host.h"
14 // Autofill does not need the entire TabContents class, just
17 // data for AutoFill. Then Android won't care about this
  /external/chromium/chrome/common/
autofill_messages.h 43 // Autofill messages sent from the browser to the renderer.
46 // Autofill suggestions.
55 // Autofill form data.
66 // Autofill messages sent from the renderer to the browser.
87 // Queries the browser for Autofill suggestions for a form input field.
93 // Sent when the popup with Autofill suggestions for a form is shown.
96 // Instructs the browser to fill in the values for a form using Autofill
104 // Sent when a form is previewed or filled with Autofill suggestions.
113 // Instructs the browser to show the Autofill dialog.
  /external/chromium/chrome/browser/webdata/
autofill_table.h 25 // This class manages the various autofill tables within the SQLite database
30 // autofill
41 // in the appropriate row of the autofill table.
45 // autofill_profiles This table contains Autofill profile data added by the
46 // user with the Autofill dialog. Most of the columns are
92 // This table contains guids of "trashed" autofill
99 // with the Autofill dialog. Most of the columns are
120 // autofill table. A list of all added and updated autofill entries
125 // Records a single form element in the database in the autofill table. A lis
    [all...]
  /external/chromium/chrome/browser/sync/engine/
download_updates_command_unittest.cc 49 enabled_types[syncable::AUTOFILL] = true;
54 v.ExpectHasExtension(sync_pb::autofill);
84 SCOPED_TRACE("Autofill only.");
86 enabled_types[syncable::AUTOFILL] = true;
90 v.ExpectHasExtension(sync_pb::autofill);
110 types.insert(syncable::AUTOFILL);
122 types.insert(syncable::AUTOFILL);
127 source.types[syncable::AUTOFILL] = "autofill_payload";
  /external/chromium/
Android.mk 357 # AutoFill++ source files.
359 android/autofill/android_url_request_context_getter.cc \
360 android/autofill/profile_android.cc \
361 android/autofill/url_fetcher_proxy.cc \
367 chrome/browser/autofill/address.cc \
368 chrome/browser/autofill/address_field.cc \
369 chrome/browser/autofill/autofill_country.cc \
370 chrome/browser/autofill/autofill_download.cc \
371 chrome/browser/autofill/autofill_field.cc \
372 chrome/browser/autofill/autofill_manager.cc
    [all...]

Completed in 271 milliseconds

1 2 3 4 5 6 7 8 91011>>