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

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

Issue 6004003: Introduce a separate preference for 'proxy server mode' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nit - alphabetize Created 10 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 <algorithm> 5 #include <algorithm>
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 #include "base/scoped_temp_dir.h" 9 #include "base/scoped_temp_dir.h"
10 #include "base/string_number_conversions.h" 10 #include "base/string_number_conversions.h"
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 ValueTestParams::ForStringPolicy( 252 ValueTestParams::ForStringPolicy(
253 kPolicyDefaultSearchProviderSuggestURL, 253 kPolicyDefaultSearchProviderSuggestURL,
254 key::kDefaultSearchProviderSuggestURL), 254 key::kDefaultSearchProviderSuggestURL),
255 ValueTestParams::ForStringPolicy( 255 ValueTestParams::ForStringPolicy(
256 kPolicyDefaultSearchProviderIconURL, 256 kPolicyDefaultSearchProviderIconURL,
257 key::kDefaultSearchProviderIconURL), 257 key::kDefaultSearchProviderIconURL),
258 ValueTestParams::ForStringPolicy( 258 ValueTestParams::ForStringPolicy(
259 kPolicyDefaultSearchProviderEncodings, 259 kPolicyDefaultSearchProviderEncodings,
260 key::kDefaultSearchProviderEncodings), 260 key::kDefaultSearchProviderEncodings),
261 ValueTestParams::ForIntegerPolicy( 261 ValueTestParams::ForIntegerPolicy(
262 kPolicyProxyServerMode, 262 kPolicyProxyMode,
263 key::kProxyServerMode), 263 key::kProxyMode),
264 ValueTestParams::ForStringPolicy( 264 ValueTestParams::ForStringPolicy(
265 kPolicyProxyServer, 265 kPolicyProxyServer,
266 key::kProxyServer), 266 key::kProxyServer),
267 ValueTestParams::ForStringPolicy( 267 ValueTestParams::ForStringPolicy(
268 kPolicyProxyPacUrl, 268 kPolicyProxyPacUrl,
269 key::kProxyPacUrl), 269 key::kProxyPacUrl),
270 ValueTestParams::ForStringPolicy( 270 ValueTestParams::ForStringPolicy(
271 kPolicyProxyBypassList, 271 kPolicyProxyBypassList,
272 key::kProxyBypassList), 272 key::kProxyBypassList),
273 ValueTestParams::ForBooleanPolicy( 273 ValueTestParams::ForBooleanPolicy(
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 kPolicyExtensionInstallDenyList, 310 kPolicyExtensionInstallDenyList,
311 key::kExtensionInstallDenyList), 311 key::kExtensionInstallDenyList),
312 ValueTestParams::ForBooleanPolicy( 312 ValueTestParams::ForBooleanPolicy(
313 kPolicyShowHomeButton, 313 kPolicyShowHomeButton,
314 key::kShowHomeButton), 314 key::kShowHomeButton),
315 ValueTestParams::ForBooleanPolicy( 315 ValueTestParams::ForBooleanPolicy(
316 kPolicyPrintingEnabled, 316 kPolicyPrintingEnabled,
317 key::kPrintingEnabled))); 317 key::kPrintingEnabled)));
318 318
319 } // namespace policy 319 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/net/pref_proxy_config_service_unittest.cc ('k') | chrome/browser/policy/configuration_policy_pref_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698