Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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. | |
| 4 | |
| 5 #include "android_webview/common/pref_names.h" | |
| 6 | |
| 7 namespace android_webview { | |
| 8 | |
| 9 namespace prefs { | |
| 10 | |
| 11 // String that specifies the Android account type to use for Negotiate | |
| 12 // authentication. | |
| 13 const char kAuthAndroidNegotiateAccountType[] = | |
| 14 "AuthAndroidNegotiateAccountType"; | |
|
sgurun-gerrit only
2015/11/13 08:43:51
is there a reason to choose a different string tha
dgn
2015/11/25 00:27:15
No, I had mixed up pref and policy names. fixed in
| |
| 15 | |
| 16 // Whitelist containing servers for which Integrated Authentication is enabled. | |
| 17 const char kAuthServerWhitelist[] = "AuthServerWhitelist"; | |
| 18 | |
| 19 } // namespace android_webview | |
| 20 | |
| 21 } // namespace prefs | |
| OLD | NEW |