browser(webkit): fix mac compilation (#2317)

This commit is contained in:
Yury Semikhatsky 2020-05-20 15:48:31 -07:00 committed by GitHub
parent 48440f7ed7
commit d99ebc9265
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
1239
1240

View File

@ -9581,7 +9581,7 @@ index 0000000000000000000000000000000000000000..f356c613945fd263889bc74166bef2b2
+} // namespace WebKit
diff --git a/Source/WebKit/UIProcess/InspectorPlaywrightAgent.cpp b/Source/WebKit/UIProcess/InspectorPlaywrightAgent.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..3a695349c679f8685093eb685911d16a9e8f6bcc
index 0000000000000000000000000000000000000000..4d8217108bd02f5efb2351adca1038d607ade7ea
--- /dev/null
+++ b/Source/WebKit/UIProcess/InspectorPlaywrightAgent.cpp
@@ -0,0 +1,796 @@
@ -10184,7 +10184,7 @@ index 0000000000000000000000000000000000000000..3a695349c679f8685093eb685911d16a
+ [callback = WTFMove(callback)](Vector<WebCore::Cookie> allCookies) {
+ if (!callback->isActive())
+ return;
+ auto cookies = JSON::ArrayOf<Protocol::Playwright::Cookie>::create();
+ auto cookies = JSON::ArrayOf<Inspector::Protocol::Playwright::Cookie>::create();
+ for (const auto& cookie : allCookies)
+ cookies->addItem(buildObjectForCookie(cookie));
+ callback->sendSuccess(WTFMove(cookies));