summaryrefslogtreecommitdiff
path: root/chromium/components/autofill/core/common/autofill_switches.cc
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-08 14:30:41 +0200
committerJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-12 13:49:54 +0200
commitab0a50979b9eb4dfa3320eff7e187e41efedf7a9 (patch)
tree498dfb8a97ff3361a9f7486863a52bb4e26bb898 /chromium/components/autofill/core/common/autofill_switches.cc
parent4ce69f7403811819800e7c5ae1318b2647e778d1 (diff)
downloadqtwebengine-chromium-ab0a50979b9eb4dfa3320eff7e187e41efedf7a9.tar.gz
Update Chromium to beta version 37.0.2062.68
Change-Id: I188e3b5aff1bec75566014291b654eb19f5bc8ca Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'chromium/components/autofill/core/common/autofill_switches.cc')
-rw-r--r--chromium/components/autofill/core/common/autofill_switches.cc54
1 files changed, 0 insertions, 54 deletions
diff --git a/chromium/components/autofill/core/common/autofill_switches.cc b/chromium/components/autofill/core/common/autofill_switches.cc
deleted file mode 100644
index 8174c038203..00000000000
--- a/chromium/components/autofill/core/common/autofill_switches.cc
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// 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"
-
-namespace autofill {
-namespace switches {
-
-// Flag used to tell Chrome the base url of the Autofill service.
-const char kAutofillServiceUrl[] = "autofill-service-url";
-
-// Disables an interactive autocomplete UI. See kEnableInteractiveAutocomplete
-// for a description.
-const char kDisableInteractiveAutocomplete[] =
- "disable-interactive-autocomplete";
-
-// Disables password generation when we detect that the user is going through
-// account creation.
-const char kDisablePasswordGeneration[] = "disable-password-generation";
-
-// Forces the password manager to ignore autocomplete='off' for password forms.
-const char kEnableIgnoreAutocompleteOff[] = "enable-ignore-autocomplete-off";
-
-// Enables an interactive autocomplete UI and a way to invoke this UI from
-// WebKit by enabling HTMLFormElement#requestAutocomplete (and associated
-// autocomplete* events and logic).
-const char kEnableInteractiveAutocomplete[] = "enable-interactive-autocomplete";
-
-// Enables password generation when we detect that the user is going through
-// account creation.
-const char kEnablePasswordGeneration[] = "enable-password-generation";
-
-// Removes the requirement that we recieved a ping from the autofill servers.
-// Used in testing.
-const char kNoAutofillNecessaryForPasswordGeneration[] =
- "no-autofill-for-password-generation";
-
-// Annotates forms with Autofill field type predictions.
-const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions";
-
-// Secure service URL for Online Wallet service. Used as the base url to escrow
-// credit card numbers.
-const char kWalletSecureServiceUrl[] = "wallet-secure-service-url";
-
-// Service URL for Online Wallet service. Used as the base url for Online Wallet
-// API calls.
-const char kWalletServiceUrl[] = "wallet-service-url";
-
-// Use the sandbox Online Wallet service URL (for developer testing).
-const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox";
-
-} // namespace switches
-} // namespace autofill