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 ANDROID_WEBVIEW_COMMON_PREF_NAMES_H_ | |
| 6 #define ANDROID_WEBVIEW_COMMON_PREF_NAMES_H_ | |
| 7 | |
| 8 namespace android_webview { | |
| 9 | |
| 10 // Mirrors select preferences from chrome/common/pref_names.h | |
| 11 namespace prefs { | |
| 12 | |
| 13 // Used for Kerberos authentication | |
| 14 extern const char kAuthAndroidNegotiateAccountType[]; | |
| 15 extern const char kAuthServerWhitelist[]; | |
| 16 | |
| 17 } // 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.
| |
| 18 } // namespace prefs | |
| 19 | |
| 20 #endif // ANDROID_WEBVIEW_COMMON_PREF_NAMES_H_ | |
| OLD | NEW |