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
3 // found in the LICENSE file.
5 #include "components/proximity_auth/switches.h"
7 namespace proximity_auth
{
10 // Disable Easy sign-in.
11 const char kDisableEasySignin
[] = "disable-easy-signin";
13 // Disable Easy unlock.
14 const char kDisableEasyUnlock
[] = "disable-easy-unlock";
16 // Enable Easy sign-in.
17 const char kEnableEasySignin
[] = "enable-easy-signin";
19 // Enable Easy unlock.
20 const char kEnableEasyUnlock
[] = "enable-easy-unlock";
22 // Enables close proximity detection. This allows the user to set a setting to
23 // require very close proximity between the remote device and the local device
24 // in order to unlock the local device, which trades off convenience for
26 const char kEnableProximityDetection
[] =
27 "enable-proximity-auth-proximity-detection";
29 } // namespace switches
30 } // namespace proximity_auth