Index: base/values.cc |
diff --git a/base/values.cc b/base/values.cc |
index 1b87498738a31529874a1880b03857f4a15b8368..5f6eaae01cfb4be8a2b4e9adc8e06ce5fc1cf9a5 100644 |
--- a/base/values.cc |
+++ b/base/values.cc |
@@ -94,47 +94,47 @@ std::unique_ptr<Value> Value::CreateNullValue() { |
return WrapUnique(new Value(TYPE_NULL)); |
} |
-bool Value::GetAsBinary(const BinaryValue** out_value) const { |
+bool Value::GetAsBinary(const BinaryValue**) const { |
return false; |
} |
-bool Value::GetAsBoolean(bool* out_value) const { |
+bool Value::GetAsBoolean(bool*) const { |
return false; |
} |
-bool Value::GetAsInteger(int* out_value) const { |
+bool Value::GetAsInteger(int*) const { |
return false; |
} |
-bool Value::GetAsDouble(double* out_value) const { |
+bool Value::GetAsDouble(double*) const { |
return false; |
} |
-bool Value::GetAsString(std::string* out_value) const { |
+bool Value::GetAsString(std::string*) const { |
return false; |
} |
-bool Value::GetAsString(string16* out_value) const { |
+bool Value::GetAsString(string16*) const { |
return false; |
} |
-bool Value::GetAsString(const StringValue** out_value) const { |
+bool Value::GetAsString(const StringValue**) const { |
return false; |
} |
-bool Value::GetAsList(ListValue** out_value) { |
+bool Value::GetAsList(ListValue**) { |
return false; |
} |
-bool Value::GetAsList(const ListValue** out_value) const { |
+bool Value::GetAsList(const ListValue**) const { |
return false; |
} |
-bool Value::GetAsDictionary(DictionaryValue** out_value) { |
+bool Value::GetAsDictionary(DictionaryValue**) { |
return false; |
} |
-bool Value::GetAsDictionary(const DictionaryValue** out_value) const { |
+bool Value::GetAsDictionary(const DictionaryValue**) const { |
return false; |
} |