blob: 7eb504c3f4bb7d3006c7bed87f9e230c00eee890 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/prefs/proxy_prefs.h"
#include "base/basictypes.h"
#include "base/logging.h"
namespace {
// These names are exposed to the proxy extension API. They must be in sync
// with the constants of ProxyPrefs.
const char* kProxyModeNames[] = { "direct",
"auto_detect",
"pac_script",
"fixed_servers",
"system" };
} // namespace
namespace ProxyPrefs {
COMPILE_ASSERT(arraysize(kProxyModeNames) == kModeCount,
kProxyModeNames_must_have_size_of_NUM_MODES);
bool IntToProxyMode(int in_value, ProxyMode* out_value) {
DCHECK(out_value);
if (in_value < 0 || in_value >= kModeCount)
return false;
*out_value = static_cast<ProxyMode>(in_value);
return true;
}
// static
bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value) {
DCHECK(out_value);
for (int i = 0; i < kModeCount; i++) {
if (in_value == kProxyModeNames[i])
return IntToProxyMode(i, out_value);
}
return false;
}
} // namespace
|