Chromium Code Reviews| Index: android_webview/common/pref_names.h |
| diff --git a/android_webview/common/pref_names.h b/android_webview/common/pref_names.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4e7c1a257ac03edc7a59173c88125475678edf1c |
| --- /dev/null |
| +++ b/android_webview/common/pref_names.h |
| @@ -0,0 +1,20 @@ |
| +// 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 ANDROID_WEBVIEW_COMMON_PREF_NAMES_H_ |
| +#define ANDROID_WEBVIEW_COMMON_PREF_NAMES_H_ |
| + |
| +namespace android_webview { |
| + |
| +// Mirrors select preferences from chrome/common/pref_names.h |
| +namespace prefs { |
| + |
| +// Used for Kerberos authentication |
| +extern const char kAuthAndroidNegotiateAccountType[]; |
| +extern const char kAuthServerWhitelist[]; |
| + |
| +} // namespace android_webview |
|
Bernhard Bauer
2015/11/10 17:51:29
This is the wrong way around 😃
dgn
2015/11/11 12:26:36
😳 Thanks, done.
|
| +} // namespace prefs |
| + |
| +#endif // ANDROID_WEBVIEW_COMMON_PREF_NAMES_H_ |