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

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

Issue 138753005: Add gnubby authentication to remoting host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another Windows warning Created 6 years, 10 months 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/common/pref_names.h » ('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/values.h" 9 #include "base/values.h"
10 #include "chrome/browser/net/proxy_policy_handler.h" 10 #include "chrome/browser/net/proxy_policy_handler.h"
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 base::Value::TYPE_STRING }, 260 base::Value::TYPE_STRING },
261 { key::kRemoteAccessHostTalkGadgetPrefix, 261 { key::kRemoteAccessHostTalkGadgetPrefix,
262 prefs::kRemoteAccessHostTalkGadgetPrefix, 262 prefs::kRemoteAccessHostTalkGadgetPrefix,
263 base::Value::TYPE_STRING }, 263 base::Value::TYPE_STRING },
264 { key::kRemoteAccessHostRequireCurtain, 264 { key::kRemoteAccessHostRequireCurtain,
265 prefs::kRemoteAccessHostRequireCurtain, 265 prefs::kRemoteAccessHostRequireCurtain,
266 base::Value::TYPE_BOOLEAN }, 266 base::Value::TYPE_BOOLEAN },
267 { key::kRemoteAccessHostAllowClientPairing, 267 { key::kRemoteAccessHostAllowClientPairing,
268 prefs::kRemoteAccessHostAllowClientPairing, 268 prefs::kRemoteAccessHostAllowClientPairing,
269 base::Value::TYPE_BOOLEAN }, 269 base::Value::TYPE_BOOLEAN },
270 { key::kRemoteAccessHostAllowGnubbyAuth,
271 prefs::kRemoteAccessHostAllowGnubbyAuth,
272 base::Value::TYPE_BOOLEAN },
270 { key::kCloudPrintProxyEnabled, 273 { key::kCloudPrintProxyEnabled,
271 prefs::kCloudPrintProxyEnabled, 274 prefs::kCloudPrintProxyEnabled,
272 base::Value::TYPE_BOOLEAN }, 275 base::Value::TYPE_BOOLEAN },
273 { key::kCloudPrintSubmitEnabled, 276 { key::kCloudPrintSubmitEnabled,
274 prefs::kCloudPrintSubmitEnabled, 277 prefs::kCloudPrintSubmitEnabled,
275 base::Value::TYPE_BOOLEAN }, 278 base::Value::TYPE_BOOLEAN },
276 { key::kTranslateEnabled, 279 { key::kTranslateEnabled,
277 prefs::kEnableTranslate, 280 prefs::kEnableTranslate,
278 base::Value::TYPE_BOOLEAN }, 281 base::Value::TYPE_BOOLEAN },
279 { key::kAllowOutdatedPlugins, 282 { key::kAllowOutdatedPlugins,
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 #endif // defined(OS_CHROMEOS) 690 #endif // defined(OS_CHROMEOS)
688 691
689 #if defined(OS_ANDROID) 692 #if defined(OS_ANDROID)
690 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>( 693 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>(
691 new ManagedBookmarksPolicyHandler())); 694 new ManagedBookmarksPolicyHandler()));
692 #endif 695 #endif
693 return handlers.Pass(); 696 return handlers.Pass();
694 } 697 }
695 698
696 } // namespace policy 699 } // namespace policy
OLDNEW
« no previous file with comments | « no previous file | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698