Chromium Code Reviews

Side by Side Diff: chrome/browser/policy/configuration_policy_handler_list_factory.cc

Issue 832423003: Removing the auth related command line option auth-server-whitelist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | chrome/browser/prefs/command_line_pref_store.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/policy/configuration_policy_handler_list_factory.h" 5 #include "chrome/browser/policy/configuration_policy_handler_list_factory.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/memory/scoped_vector.h" 9 #include "base/memory/scoped_vector.h"
10 #include "base/values.h" 10 #include "base/values.h"
(...skipping 209 matching lines...)
220 base::Value::TYPE_BOOLEAN }, 220 base::Value::TYPE_BOOLEAN },
221 { key::kAuthSchemes, 221 { key::kAuthSchemes,
222 prefs::kAuthSchemes, 222 prefs::kAuthSchemes,
223 base::Value::TYPE_STRING }, 223 base::Value::TYPE_STRING },
224 { key::kDisableAuthNegotiateCnameLookup, 224 { key::kDisableAuthNegotiateCnameLookup,
225 prefs::kDisableAuthNegotiateCnameLookup, 225 prefs::kDisableAuthNegotiateCnameLookup,
226 base::Value::TYPE_BOOLEAN }, 226 base::Value::TYPE_BOOLEAN },
227 { key::kEnableAuthNegotiatePort, 227 { key::kEnableAuthNegotiatePort,
228 prefs::kEnableAuthNegotiatePort, 228 prefs::kEnableAuthNegotiatePort,
229 base::Value::TYPE_BOOLEAN }, 229 base::Value::TYPE_BOOLEAN },
230 { key::kAuthServerWhitelist,
231 prefs::kAuthServerWhitelist,
232 base::Value::TYPE_STRING },
233 { key::kAuthNegotiateDelegateWhitelist, 230 { key::kAuthNegotiateDelegateWhitelist,
234 prefs::kAuthNegotiateDelegateWhitelist, 231 prefs::kAuthNegotiateDelegateWhitelist,
235 base::Value::TYPE_STRING }, 232 base::Value::TYPE_STRING },
236 { key::kGSSAPILibraryName, 233 { key::kGSSAPILibraryName,
237 prefs::kGSSAPILibraryName, 234 prefs::kGSSAPILibraryName,
238 base::Value::TYPE_STRING }, 235 base::Value::TYPE_STRING },
239 { key::kAllowCrossOriginAuthPrompt, 236 { key::kAllowCrossOriginAuthPrompt,
240 prefs::kAllowCrossOriginAuthPrompt, 237 prefs::kAllowCrossOriginAuthPrompt,
241 base::Value::TYPE_BOOLEAN }, 238 base::Value::TYPE_BOOLEAN },
242 { key::kDisable3DAPIs, 239 { key::kDisable3DAPIs,
(...skipping 576 matching lines...)
819 chrome_schema, 816 chrome_schema,
820 SCHEMA_STRICT, 817 SCHEMA_STRICT,
821 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED, 818 SimpleSchemaValidatingPolicyHandler::RECOMMENDED_ALLOWED,
822 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED))); 819 SimpleSchemaValidatingPolicyHandler::MANDATORY_PROHIBITED)));
823 #endif // defined(OS_CHROMEOS) 820 #endif // defined(OS_CHROMEOS)
824 821
825 return handlers.Pass(); 822 return handlers.Pass();
826 } 823 }
827 824
828 } // namespace policy 825 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | chrome/browser/prefs/command_line_pref_store.cc » ('j') | no next file with comments »

Powered by Google App Engine