Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: net/base/net_pref_names.h

Issue 1414313002: Allow dynamic updating of authentication policies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move //base/prefs references out of net - part 1. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698