| Index: third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase.cpp
|
| diff --git a/third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase.cpp b/third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase.cpp
|
| index 8f154f42ac286f04d1d712d44aa3c8d527c659e9..86ac0582eaf4beb1ee07ca8c4c9ce0119808b921 100644
|
| --- a/third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase.cpp
|
| +++ b/third_party/WebKit/Source/platform/inspector_protocol/DispatcherBase.cpp
|
| @@ -154,7 +154,7 @@ void UberDispatcher::dispatch(const String16& message)
|
| return;
|
|
|
| size_t dotIndex = method.find(".");
|
| - if (dotIndex == kNotFound) {
|
| + if (dotIndex == String16::kNotFound) {
|
| reportProtocolError(m_frontendChannel, callId, DispatcherBase::MethodNotFound, "'" + method + "' wasn't found", nullptr);
|
| return;
|
| }
|
|
|