| Index: Source/core/inspector/TimelineTraceEventProcessor.h
|
| diff --git a/Source/core/inspector/TimelineTraceEventProcessor.h b/Source/core/inspector/TimelineTraceEventProcessor.h
|
| index d710b3a8d99f1b5e95730bd93dffada0a623f652..e9b386ec05d945fe67ccb8ec0a74d8ed3b06796e 100644
|
| --- a/Source/core/inspector/TimelineTraceEventProcessor.h
|
| +++ b/Source/core/inspector/TimelineTraceEventProcessor.h
|
| @@ -175,7 +175,7 @@ private:
|
| long long asInt(const char* name) const
|
| {
|
| size_t index = findParameter(name);
|
| - if (index == notFound || (m_argumentTypes[index] != TypeInt && m_argumentTypes[index] != TypeUInt)) {
|
| + if (index == kNotFound || (m_argumentTypes[index] != TypeInt && m_argumentTypes[index] != TypeUInt)) {
|
| ASSERT_NOT_REACHED();
|
| return 0;
|
| }
|
|
|