summaryrefslogtreecommitdiffstats
path: root/net/test
diff options
context:
space:
mode:
Diffstat (limited to 'net/test')
-rw-r--r--net/test/spawned_test_server/local_test_server.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/test/spawned_test_server/local_test_server.cc b/net/test/spawned_test_server/local_test_server.cc
index 8679d7b..7ee12b9 100644
--- a/net/test/spawned_test_server/local_test_server.cc
+++ b/net/test/spawned_test_server/local_test_server.cc
@@ -35,7 +35,7 @@ bool AppendArgumentFromJSONValue(const std::string& key,
command_line->AppendArg(argument_name + "=" + base::IntToString(value));
break;
}
- case Value::TYPE_STRING: {
+ case base::Value::TYPE_STRING: {
std::string value;
bool result = value_node.GetAsString(&value);
if (!result || value.empty())
@@ -210,7 +210,7 @@ bool LocalTestServer::AddCommandLineArguments(CommandLine* command_line) const {
const std::string& key = it.key();
// Add arguments from a list.
- if (value.IsType(Value::TYPE_LIST)) {
+ if (value.IsType(base::Value::TYPE_LIST)) {
const base::ListValue* list = NULL;
if (!value.GetAsList(&list) || !list || list->empty())
return false;