| Index: Source/core/inspector/InspectorPageAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorPageAgent.cpp b/Source/core/inspector/InspectorPageAgent.cpp
|
| index baad746f9b40d0aec1e7367104a227116735d122..9a939cdd47f44a796ba63332db617eeef6265487 100644
|
| --- a/Source/core/inspector/InspectorPageAgent.cpp
|
| +++ b/Source/core/inspector/InspectorPageAgent.cpp
|
| @@ -900,8 +900,8 @@ Frame* InspectorPageAgent::assertFrame(ErrorString* errorString, const String& f
|
|
|
| String InspectorPageAgent::resourceSourceMapURL(const String& url)
|
| {
|
| - DEFINE_STATIC_LOCAL(String, sourceMapHttpHeader, (ASCIILiteral("SourceMap")));
|
| - DEFINE_STATIC_LOCAL(String, deprecatedSourceMapHttpHeader, (ASCIILiteral("X-SourceMap")));
|
| + DEFINE_STATIC_LOCAL(String, sourceMapHttpHeader, ("SourceMap"));
|
| + DEFINE_STATIC_LOCAL(String, deprecatedSourceMapHttpHeader, ("X-SourceMap"));
|
| if (url.isEmpty())
|
| return String();
|
| Frame* frame = mainFrame();
|
|
|