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

Unified Diff: android_webview/common/pref_names.cc

Issue 1431473004: Add Kerberos support to webview (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ActivitylessNegoAuth
Patch Set: Address review comments 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: android_webview/common/pref_names.cc
diff --git a/android_webview/common/pref_names.cc b/android_webview/common/pref_names.cc
new file mode 100644
index 0000000000000000000000000000000000000000..35fc6f44bcf1f4c3a44fcb919f2ffdb5f8c583e6
--- /dev/null
+++ b/android_webview/common/pref_names.cc
@@ -0,0 +1,21 @@
+// 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.
+
+#include "android_webview/common/pref_names.h"
+
+namespace android_webview {
+
+namespace prefs {
+
+// String that specifies the Android account type to use for Negotiate
+// authentication.
+const char kAuthAndroidNegotiateAccountType[] =
+ "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
+
+// Whitelist containing servers for which Integrated Authentication is enabled.
+const char kAuthServerWhitelist[] = "AuthServerWhitelist";
+
+} // namespace android_webview
+
+} // namespace prefs

Powered by Google App Engine
This is Rietveld 408576698