Skip to content

Commit

Permalink
browser(webkit): fix mac compilation (#2317)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s committed May 20, 2020
1 parent 48440f7 commit d99ebc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion browser_patches/webkit/BUILD_NUMBER
@@ -1 +1 @@
1239
1240
4 changes: 2 additions & 2 deletions browser_patches/webkit/patches/bootstrap.diff
Expand Up @@ -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 @@
Expand Down Expand Up @@ -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));
Expand Down

0 comments on commit d99ebc9

Please sign in to comment.