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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: net/base/net_pref_names.h
diff --git a/net/base/net_pref_names.h b/net/base/net_pref_names.h
new file mode 100644
index 0000000000000000000000000000000000000000..fe5d4c7587829928e780801fd469b7a8de0b5e86
--- /dev/null
+++ b/net/base/net_pref_names.h
@@ -0,0 +1,27 @@
+// Copyright 2015 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.
+
+#ifndef NET_BASE_NET_PREF_NAMES_H_
+#define NET_BASE_NET_PREF_NAMES_H_
+
+#include "build/build_config.h"
+#include "net/base/net_export.h"
+
+namespace net {
+
+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
+
+extern NET_EXPORT const char kAuthSchemes[];
+extern NET_EXPORT const char kDisableAuthNegotiateCnameLookup[];
+extern NET_EXPORT const char kEnableAuthNegotiatePort[];
+extern NET_EXPORT const char kAuthServerWhitelist[];
+extern NET_EXPORT const char kAuthNegotiateDelegateWhitelist[];
+extern NET_EXPORT const char kGSSAPILibraryName[];
+#if defined(OS_ANDROID)
+extern NET_EXPORT const char kAuthAndroidNegotiateAccountType[];
+#endif
+} // namespace prefs
+
+} // namespace net
+#endif // NET_BASE_NET_PREF_NAMES_H_

Powered by Google App Engine
This is Rietveld 408576698