| Index: third_party/WebKit/Source/core/html/parser/HTMLScriptRunner.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLScriptRunner.cpp b/third_party/WebKit/Source/core/html/parser/HTMLScriptRunner.cpp
|
| index 486d24313aa2729e2c26b01df22ababfdc867395..44dc2e31da227dcaf6f508b4630f7dbc1e5cf1a9 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLScriptRunner.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLScriptRunner.cpp
|
| @@ -38,7 +38,6 @@
|
| #include "core/html/parser/HTMLScriptRunnerHost.h"
|
| #include "core/html/parser/NestingLevelIncrementer.h"
|
| #include "platform/Histogram.h"
|
| -#include "platform/NotImplemented.h"
|
| #include "platform/TraceEvent.h"
|
| #include "platform/TracedValue.h"
|
| #include "public/platform/Platform.h"
|
| @@ -383,7 +382,7 @@ bool HTMLScriptRunner::requestPendingScript(PendingScript* pendingScript, Elemen
|
| // This should correctly return 0 for empty or invalid srcValues.
|
| ScriptResource* resource = toScriptLoaderIfPossible(script)->resource();
|
| if (!resource) {
|
| - notImplemented(); // Dispatch error event.
|
| + NOTIMPLEMENTED(); // Dispatch error event.
|
| return false;
|
| }
|
| pendingScript->setScriptResource(resource);
|
|
|