| Index: chrome/test/chromedriver/chrome/log.cc
|
| diff --git a/chrome/test/chromedriver/chrome/log.cc b/chrome/test/chromedriver/chrome/log.cc
|
| index 75ed25b0b148f69d0a4c9e7fe472cb5ba6959554..a40f9b2d786ff954ec6914bb50ccc36264155624 100644
|
| --- a/chrome/test/chromedriver/chrome/log.cc
|
| +++ b/chrome/test/chromedriver/chrome/log.cc
|
| @@ -49,7 +49,7 @@ scoped_ptr<base::Value> SmartDeepCopy(const base::Value* value) {
|
| dict_copy->SetWithoutPathExpansion(it.key(),
|
| SmartDeepCopy(child).release());
|
| }
|
| - return dict_copy.PassAs<base::Value>();
|
| + return dict_copy.Pass();
|
| } else if (value->GetAsList(&list)) {
|
| scoped_ptr<base::ListValue> list_copy(new base::ListValue());
|
| for (size_t i = 0; i < list->GetSize(); ++i) {
|
| @@ -62,7 +62,7 @@ scoped_ptr<base::Value> SmartDeepCopy(const base::Value* value) {
|
| }
|
| list_copy->Append(SmartDeepCopy(child).release());
|
| }
|
| - return list_copy.PassAs<base::Value>();
|
| + return list_copy.Pass();
|
| } else if (value->GetAsString(&data)) {
|
| TruncateString(&data);
|
| return scoped_ptr<base::Value>(new base::StringValue(data));
|
|
|