Skip to content

Commit d99ebc9

Browse files
authored
browser(webkit): fix mac compilation (#2317)
1 parent 48440f7 commit d99ebc9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

browser_patches/webkit/BUILD_NUMBER

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1239
1+
1240

browser_patches/webkit/patches/bootstrap.diff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9581,7 +9581,7 @@ index 0000000000000000000000000000000000000000..f356c613945fd263889bc74166bef2b2
95819581
+} // namespace WebKit
95829582
diff --git a/Source/WebKit/UIProcess/InspectorPlaywrightAgent.cpp b/Source/WebKit/UIProcess/InspectorPlaywrightAgent.cpp
95839583
new file mode 100644
9584-
index 0000000000000000000000000000000000000000..3a695349c679f8685093eb685911d16a9e8f6bcc
9584+
index 0000000000000000000000000000000000000000..4d8217108bd02f5efb2351adca1038d607ade7ea
95859585
--- /dev/null
95869586
+++ b/Source/WebKit/UIProcess/InspectorPlaywrightAgent.cpp
95879587
@@ -0,0 +1,796 @@
@@ -10184,7 +10184,7 @@ index 0000000000000000000000000000000000000000..3a695349c679f8685093eb685911d16a
1018410184
+ [callback = WTFMove(callback)](Vector<WebCore::Cookie> allCookies) {
1018510185
+ if (!callback->isActive())
1018610186
+ return;
10187-
+ auto cookies = JSON::ArrayOf<Protocol::Playwright::Cookie>::create();
10187+
+ auto cookies = JSON::ArrayOf<Inspector::Protocol::Playwright::Cookie>::create();
1018810188
+ for (const auto& cookie : allCookies)
1018910189
+ cookies->addItem(buildObjectForCookie(cookie));
1019010190
+ callback->sendSuccess(WTFMove(cookies));

0 commit comments

Comments
 (0)