Changeset 244652 in webkit
- Timestamp:
- Apr 25, 2019, 10:36:58 AM (6 years ago)
- Location:
- trunk/Source
- Files:
-
- 1 added
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r244620 r244652 1 2019-04-25 Alex Christensen <achristensen@webkit.org> 2 3 Remove DeprecatedOptional 4 https://bugs.webkit.org/show_bug.cgi?id=197161 5 6 Reviewed by Darin Adler. 7 8 We need to keep a symbol exported from JavaScriptCore for binary compatibility with iOS12. 9 We need this symbol to be in a file that doesn't include anything because libcxx's implementation of 10 std::optional is actually std::__1::optional, which has a different mangled name. This change will 11 prevent protocol errors from being reported if you are running the iOS12 simulator with a custom build of WebKit 12 and using the web inspector with it, but it's necessary to allow us to start using C++17 in WebKit. 13 14 * JavaScriptCore.xcodeproj/project.pbxproj: 15 * inspector/InspectorBackendDispatcher.cpp: 16 * inspector/InspectorBackendDispatcher.h: 17 * inspector/InspectorBackendDispatcherCompatibility.cpp: Added. 18 (Inspector::BackendDispatcher::reportProtocolError): 19 * inspector/InspectorBackendDispatcherCompatibility.h: Added. 20 1 21 2019-04-24 Saam Barati <sbarati@apple.com> 2 22 -
trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj
r244578 r244652 1105 1105 5B70CFE01DB69E6600EC23F9 /* AsyncFunctionPrototype.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B70CFDA1DB69E5C00EC23F9 /* AsyncFunctionPrototype.h */; }; 1106 1106 5B70CFE21DB69E6600EC23F9 /* AsyncFunctionConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B70CFDC1DB69E5C00EC23F9 /* AsyncFunctionConstructor.h */; }; 1107 5C4196622270E0000047B7CD /* InspectorBackendDispatcherCompatibility.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C4196612270DFF30047B7CD /* InspectorBackendDispatcherCompatibility.cpp */; }; 1107 1108 5C4E8E961DBEBE620036F1FC /* JSONParseTest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C4E8E941DBEBDA20036F1FC /* JSONParseTest.cpp */; }; 1108 1109 5D5D8AD10E0D0EBE00F9C692 /* libedit.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 5D5D8AD00E0D0EBE00F9C692 /* libedit.dylib */; }; … … 3686 3687 5B70CFDD1DB69E5C00EC23F9 /* AsyncFunctionConstructor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AsyncFunctionConstructor.cpp; sourceTree = "<group>"; }; 3687 3688 5B8243041DB7AA4900EA6384 /* AsyncFunctionPrototype.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = AsyncFunctionPrototype.js; sourceTree = "<group>"; }; 3689 5C4196612270DFF30047B7CD /* InspectorBackendDispatcherCompatibility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InspectorBackendDispatcherCompatibility.cpp; sourceTree = "<group>"; }; 3688 3690 5C4E8E941DBEBDA20036F1FC /* JSONParseTest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSONParseTest.cpp; path = API/tests/JSONParseTest.cpp; sourceTree = "<group>"; }; 3689 3691 5C4E8E951DBEBDA20036F1FC /* JSONParseTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSONParseTest.h; path = API/tests/JSONParseTest.h; sourceTree = "<group>"; }; … … 8204 8206 A593CF7A1840360300BFCE27 /* InspectorBackendDispatcher.cpp */, 8205 8207 A593CF7B1840360300BFCE27 /* InspectorBackendDispatcher.h */, 8208 5C4196612270DFF30047B7CD /* InspectorBackendDispatcherCompatibility.cpp */, 8206 8209 A5D0A1BA1862301B00C7B496 /* InspectorEnvironment.h */, 8207 8210 A5945594182479EB00CC3843 /* InspectorFrontendChannel.h */, … … 10724 10727 5333BBDD2110F7E1007618EC /* DFGSpeculativeJIT64.cpp in Sources */, 10725 10728 33B2A548226543BF005A0F79 /* FTLLowerDFGToB3.cpp in Sources */, 10729 5C4196622270E0000047B7CD /* InspectorBackendDispatcherCompatibility.cpp in Sources */, 10726 10730 536B319E1F735F160037FC33 /* LowLevelInterpreter.cpp in Sources */, 10727 10731 0FF4274A158EBE91004CB9FF /* udis86.c in Sources */, -
trunk/Source/JavaScriptCore/inspector/InspectorBackendDispatcher.cpp
r244574 r244652 271 271 } 272 272 273 void BackendDispatcher::reportProtocolError(WTF::DeprecatedOptional<long> relatedRequestId, CommonErrorCode errorCode, const String& errorMessage)274 {275 if (relatedRequestId)276 reportProtocolError(relatedRequestId.value(), errorCode, errorMessage);277 else278 reportProtocolError(WTF::nullopt, errorCode, errorMessage);279 }280 281 273 template<typename T> 282 274 T BackendDispatcher::getPropertyValue(JSON::Object* object, const String& name, bool* out_optionalValueFound, T defaultValue, std::function<bool(JSON::Value&, T&)> asMethod, const char* typeName) -
trunk/Source/JavaScriptCore/inspector/InspectorBackendDispatcher.h
r244574 r244652 30 30 #include "InspectorProtocolTypes.h" 31 31 #include <functional> 32 #include <wtf/DeprecatedOptional.h>33 32 #include <wtf/Optional.h> 34 33 #include <wtf/RefCounted.h> … … 111 110 BackendDispatcher(Ref<FrontendRouter>&&); 112 111 113 // This is necessary for some versions of Safari. Remove it when those versions of Safari are no longer supported.114 void reportProtocolError(WTF::DeprecatedOptional<long> relatedRequestId, CommonErrorCode, const String& errorMessage);115 116 112 Ref<FrontendRouter> m_frontendRouter; 117 113 HashMap<String, SupplementalBackendDispatcher*> m_dispatchers; -
trunk/Source/WTF/ChangeLog
r244635 r244652 1 2019-04-25 Alex Christensen <achristensen@webkit.org> 2 3 Remove DeprecatedOptional 4 https://bugs.webkit.org/show_bug.cgi?id=197161 5 6 Reviewed by Darin Adler. 7 8 * WTF.xcodeproj/project.pbxproj: 9 * wtf/CMakeLists.txt: 10 * wtf/DeprecatedOptional.h: Removed. 11 1 12 2019-04-24 Carlos Garcia Campos <cgarcia@igalia.com> 2 13 -
trunk/Source/WTF/WTF.xcodeproj/project.pbxproj
r244574 r244652 469 469 A5098AFF1C169E0700087797 /* SandboxSPI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SandboxSPI.h; sourceTree = "<group>"; }; 470 470 A5098B011C16A4F900087797 /* SecuritySPI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SecuritySPI.h; sourceTree = "<group>"; }; 471 A561F30F1DF2642100FF675D /* DeprecatedOptional.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeprecatedOptional.h; sourceTree = "<group>"; };472 471 A5BA15F2182433A900A82E69 /* StringCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = StringCocoa.mm; sourceTree = "<group>"; }; 473 472 A5BA15F41824348000A82E69 /* StringImplCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = StringImplCocoa.mm; sourceTree = "<group>"; }; … … 926 925 996B17841EBA441C007E10EB /* DebugUtilities.h */, 927 926 0F2B66A417B6B4F700A7AE3F /* DeferrableRefCounted.h */, 928 A561F30F1DF2642100FF675D /* DeprecatedOptional.h */,929 927 A8A4727E151A825A004123FF /* Deque.h */, 930 928 A9A4727F151A825A004123FF /* DisallowCType.h */, … … 1536 1534 0F9D3360165DBA73005AD387 /* FilePrintStream.cpp in Sources */, 1537 1535 A331D95B21F24992009F02AA /* FileSystem.cpp in Sources */, 1538 FE1E2C42224187C600F6B729 /* PlatformRegisters.cpp in Sources */,1539 1536 A331D95D21F249E4009F02AA /* FileSystemCF.cpp in Sources */, 1540 1537 A331D95F21F249F6009F02AA /* FileSystemCocoa.mm in Sources */, … … 1578 1575 51F1752C1F3D486000C74950 /* PersistentDecoder.cpp in Sources */, 1579 1576 51F1752D1F3D486000C74950 /* PersistentEncoder.cpp in Sources */, 1577 FE1E2C42224187C600F6B729 /* PlatformRegisters.cpp in Sources */, 1580 1578 0F9D3362165DBA73005AD387 /* PrintStream.cpp in Sources */, 1581 1579 7AF023B52061E17000A8EFD6 /* ProcessPrivilege.cpp in Sources */, 1580 FE1E2C3B2240C06600F6B729 /* PtrTag.cpp in Sources */, 1582 1581 143F611F1565F0F900DB514A /* RAMSize.cpp in Sources */, 1583 1582 A3B725EC987446AD93F1A440 /* RandomDevice.cpp in Sources */, … … 1630 1629 1C181C911D307AB800F5FA16 /* UTextProviderLatin1.cpp in Sources */, 1631 1630 1C181C931D307AB800F5FA16 /* UTextProviderUTF16.cpp in Sources */, 1632 FE1E2C3B2240C06600F6B729 /* PtrTag.cpp in Sources */,1633 1631 A8A47469151A825B004123FF /* UTF8Conversion.cpp in Sources */, 1634 1632 7AFEC6B11EB22B5900DADE36 /* UUID.cpp in Sources */, -
trunk/Source/WTF/wtf/CMakeLists.txt
r244574 r244652 48 48 DebugUtilities.h 49 49 DeferrableRefCounted.h 50 DeprecatedOptional.h51 50 Deque.h 52 51 DisallowCType.h
Note:
See TracChangeset
for help on using the changeset viewer.