| Index: third_party/WebKit/Source/core/fetch/FetchUtils.cpp
|
| diff --git a/third_party/WebKit/Source/core/fetch/FetchUtils.cpp b/third_party/WebKit/Source/core/fetch/FetchUtils.cpp
|
| index 1cec7b17a5fc140f6f09d4109cfc7fdcddc31a61..ef2c884821d9b276feb12e499f5096e078da806e 100644
|
| --- a/third_party/WebKit/Source/core/fetch/FetchUtils.cpp
|
| +++ b/third_party/WebKit/Source/core/fetch/FetchUtils.cpp
|
| @@ -4,7 +4,7 @@
|
|
|
| #include "core/fetch/FetchUtils.h"
|
|
|
| -#include "core/inspector/InspectorInstrumentation.h"
|
| +#include "platform/HTTPNames.h"
|
| #include "platform/network/HTTPHeaderMap.h"
|
| #include "platform/network/HTTPParsers.h"
|
| #include "wtf/HashSet.h"
|
| @@ -99,7 +99,7 @@ bool FetchUtils::isSimpleHeader(const AtomicString& name, const AtomicString& va
|
| if (equalIgnoringCase(name, "accept")
|
| || equalIgnoringCase(name, "accept-language")
|
| || equalIgnoringCase(name, "content-language")
|
| - || equalIgnoringCase(name, InspectorInstrumentation::kInspectorEmulateNetworkConditionsClientId)
|
| + || equalIgnoringCase(name, HTTPNames::X_DevTools_Emulate_Network_Conditions_Client_Id)
|
| || equalIgnoringCase(name, "save-data"))
|
| return true;
|
|
|
|
|