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 | |
|
sgurun-gerrit only
2015/11/13 08:43:51
if this file is just a mirror from preferences in
dgn
2015/11/13 12:37:07
They should get moved in https://codereview.chromi
sgurun-gerrit only
2015/11/18 02:23:28
ok
dgn
2015/11/25 00:27:15
In the end this won't move to //net. Moved them in
| |
| 11 namespace prefs { | |
| 12 | |
| 13 // Used for Kerberos authentication | |
| 14 extern const char kAuthAndroidNegotiateAccountType[]; | |
|
sgurun-gerrit only
2015/11/13 08:43:51
creating this file only for two const char * seems
dgn
2015/11/13 12:37:08
Depends on whether we need to support more policie
| |
| 15 extern const char kAuthServerWhitelist[]; | |
| 16 | |
| 17 } // namespace prefs | |
| 18 } // namespace android_webview | |
| 19 | |
| 20 #endif // ANDROID_WEBVIEW_COMMON_PREF_NAMES_H_ | |
| OLD | NEW |