| Index: third_party/WebKit/Source/web/tests/VirtualTimeTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/VirtualTimeTest.cpp b/third_party/WebKit/Source/web/tests/VirtualTimeTest.cpp
|
| index fa5445b7b161ca5fbb337fd4edd3a36bbd15c7d6..d891ffe95960fd4702540c79ab43ebbf17f31164 100644
|
| --- a/third_party/WebKit/Source/web/tests/VirtualTimeTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/VirtualTimeTest.cpp
|
| @@ -23,7 +23,7 @@ class ScriptExecutionCallbackHelper : public WebScriptExecutionCallback {
|
|
|
| private:
|
| void completed(const WebVector<v8::Local<v8::Value>>& values) override {
|
| - if (!values.isEmpty() && !values[0].IsEmpty() && values[0]->IsString()) {
|
| + if (!values.empty() && !values[0].IsEmpty() && values[0]->IsString()) {
|
| m_result = toCoreString(v8::Local<v8::String>::Cast(values[0]));
|
| }
|
| }
|
|
|