chromium/components/autofill/core/common/autofill_switches.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/autofill/core/common/autofill_switches.h"

#include "build/build_config.h"

namespace autofill {
namespace switches {

// Sets the API key that will be used when calling Autofill API instead of
// using Chrome's baked key by default. You can use this to test new versions
// of the API that are not linked to the Chrome baked key yet.
const char kAutofillAPIKey[] =;

// Override the default autofill server URL with "scheme://host[:port]/prefix/".
const char kAutofillServerURL[] =;

// The number of days after which to reset the registry of autofill events for
// which an upload has been sent.
const char kAutofillUploadThrottlingPeriodInDays[] =;

// Ignores autocomplete="off" for Autofill data (profiles + credit cards).
const char kIgnoreAutocompleteOffForAutofill[] =;

// Annotates forms with Autofill field type predictions.
const char kShowAutofillTypePredictions[] =;

// Annotates forms and fields with Autofill signatures.
const char kShowAutofillSignatures[] =;

// Use the sandbox Online Wallet service URL (for developer testing).
const char kWalletServiceUseSandbox[] =;

}  // namespace switches
}  // namespace autofill