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 #ifndef NET_BASE_NET_PREF_NAMES_H_ | |
| 6 #define NET_BASE_NET_PREF_NAMES_H_ | |
| 7 | |
| 8 #include "build/build_config.h" | |
| 9 #include "net/base/net_export.h" | |
| 10 | |
| 11 namespace net { | |
| 12 | |
| 13 namespace prefs { | |
|
asanka
2015/11/20 15:32:09
Pref names shouldn't be in //net. I understand tha
aberent
2015/11/23 16:34:01
Done. These aren't actually used any more. I just
| |
| 14 | |
| 15 extern NET_EXPORT const char kAuthSchemes[]; | |
| 16 extern NET_EXPORT const char kDisableAuthNegotiateCnameLookup[]; | |
| 17 extern NET_EXPORT const char kEnableAuthNegotiatePort[]; | |
| 18 extern NET_EXPORT const char kAuthServerWhitelist[]; | |
| 19 extern NET_EXPORT const char kAuthNegotiateDelegateWhitelist[]; | |
| 20 extern NET_EXPORT const char kGSSAPILibraryName[]; | |
| 21 #if defined(OS_ANDROID) | |
| 22 extern NET_EXPORT const char kAuthAndroidNegotiateAccountType[]; | |
| 23 #endif | |
| 24 } // namespace prefs | |
| 25 | |
| 26 } // namespace net | |
| 27 #endif // NET_BASE_NET_PREF_NAMES_H_ | |
| OLD | NEW |