Diff
Modified: trunk/Source/WebKit2/CMakeLists.txt (199310 => 199311)
--- trunk/Source/WebKit2/CMakeLists.txt 2016-04-11 21:31:53 UTC (rev 199310)
+++ trunk/Source/WebKit2/CMakeLists.txt 2016-04-11 21:32:30 UTC (rev 199311)
@@ -446,7 +446,7 @@
UIProcess/API/C/WKNotification.cpp
UIProcess/API/C/WKNotificationManager.cpp
UIProcess/API/C/WKNotificationPermissionRequest.cpp
- UIProcess/API/C/WKOpenPanelParameters.cpp
+ UIProcess/API/C/WKOpenPanelParametersRef.cpp
UIProcess/API/C/WKOpenPanelResultListener.cpp
UIProcess/API/C/WKPage.cpp
UIProcess/API/C/WKPageConfigurationRef.cpp
Modified: trunk/Source/WebKit2/ChangeLog (199310 => 199311)
--- trunk/Source/WebKit2/ChangeLog 2016-04-11 21:31:53 UTC (rev 199310)
+++ trunk/Source/WebKit2/ChangeLog 2016-04-11 21:32:30 UTC (rev 199311)
@@ -1,3 +1,30 @@
+2016-04-11 Anders Carlsson <[email protected]>
+
+ Rename WKOpenPanelParameters files to WKOpenPanelParametersRef
+ https://bugs.webkit.org/show_bug.cgi?id=156473
+
+ Reviewed by Alex Christensen.
+
+ * UIProcess/API/C/WKOpenPanelParameters.cpp:
+ (WKOpenPanelParametersGetTypeID): Deleted.
+ (WKOpenPanelParametersGetAllowsMultipleFiles): Deleted.
+ (WKOpenPanelParametersCopyAcceptedMIMETypes): Deleted.
+ (WKOpenPanelParametersCopyCapture): Deleted.
+ (WKOpenPanelParametersGetCaptureEnabled): Deleted.
+ (WKOpenPanelParametersCopySelectedFileNames): Deleted.
+ * UIProcess/API/C/WKOpenPanelParametersRef.cpp: Renamed from Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.cpp.
+ (WKOpenPanelParametersGetTypeID):
+ (WKOpenPanelParametersGetAllowsMultipleFiles):
+ (WKOpenPanelParametersCopyAcceptedMIMETypes):
+ (WKOpenPanelParametersCopyCapture):
+ (WKOpenPanelParametersGetCaptureEnabled):
+ (WKOpenPanelParametersCopySelectedFileNames):
+ * UIProcess/API/C/WKOpenPanelParametersRef.h: Renamed from Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.h.
+ * UIProcess/API/C/WebKit2_C.h:
+ * UIProcess/API/efl/ewk_file_chooser_request.cpp:
+ * UIProcess/mac/WebInspectorProxyMac.mm:
+ * WebKit2.xcodeproj/project.pbxproj:
+
2016-04-09 Gavin Barraclough <[email protected]>
WebKit should adopt journal_mode=wal for all SQLite databases.
Deleted: trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.cpp (199310 => 199311)
--- trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.cpp 2016-04-11 21:31:53 UTC (rev 199310)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.cpp 2016-04-11 21:32:30 UTC (rev 199311)
@@ -1,70 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2012 Samsung Electronics. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WKOpenPanelParameters.h"
-
-#include "APIArray.h"
-#include "WKAPICast.h"
-#include "WebOpenPanelParameters.h"
-
-using namespace WebKit;
-
-WKTypeID WKOpenPanelParametersGetTypeID()
-{
- return toAPI(WebOpenPanelParameters::APIType);
-}
-
-bool WKOpenPanelParametersGetAllowsMultipleFiles(WKOpenPanelParametersRef parametersRef)
-{
- return toImpl(parametersRef)->allowMultipleFiles();
-}
-
-WKArrayRef WKOpenPanelParametersCopyAcceptedMIMETypes(WKOpenPanelParametersRef parametersRef)
-{
- return toAPI(&toImpl(parametersRef)->acceptMIMETypes().leakRef());
-}
-
-// Deprecated.
-WKStringRef WKOpenPanelParametersCopyCapture(WKOpenPanelParametersRef)
-{
- return 0;
-}
-
-bool WKOpenPanelParametersGetCaptureEnabled(WKOpenPanelParametersRef parametersRef)
-{
-#if ENABLE(MEDIA_CAPTURE)
- return toImpl(parametersRef)->capture();
-#else
- UNUSED_PARAM(parametersRef);
- return false;
-#endif
-}
-
-WKArrayRef WKOpenPanelParametersCopySelectedFileNames(WKOpenPanelParametersRef parametersRef)
-{
- return toAPI(&toImpl(parametersRef)->selectedFileNames().leakRef());
-}
Deleted: trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.h (199310 => 199311)
--- trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.h 2016-04-11 21:31:53 UTC (rev 199310)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.h 2016-04-11 21:32:30 UTC (rev 199311)
@@ -1,57 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2012 Samsung Electronics. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef WKOpenPanelParameters_h
-#define WKOpenPanelParameters_h
-
-#include <WebKit/WKBase.h>
-
-#ifndef __cplusplus
-#include <stdbool.h>
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-WK_EXPORT WKTypeID WKOpenPanelParametersGetTypeID();
-
-WK_EXPORT bool WKOpenPanelParametersGetAllowsMultipleFiles(WKOpenPanelParametersRef parameters);
-
-WK_EXPORT WKArrayRef WKOpenPanelParametersCopyAcceptedMIMETypes(WKOpenPanelParametersRef parameters);
-
-/* DEPRECATED - Please use WKOpenPanelParametersGetCaptureEnabled() instead. */
-WK_EXPORT WKStringRef WKOpenPanelParametersCopyCapture(WKOpenPanelParametersRef parameters);
-
-WK_EXPORT bool WKOpenPanelParametersGetCaptureEnabled(WKOpenPanelParametersRef parametersRef);
-
-WK_EXPORT WKArrayRef WKOpenPanelParametersCopySelectedFileNames(WKOpenPanelParametersRef parametersRef);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* WKOpenPanelParameters_h */
Copied: trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParametersRef.cpp (from rev 199309, trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.cpp) (0 => 199311)
--- trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParametersRef.cpp (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParametersRef.cpp 2016-04-11 21:32:30 UTC (rev 199311)
@@ -0,0 +1,70 @@
+/*
+ * Copyright (C) 2010 Apple Inc. All rights reserved.
+ * Copyright (C) 2012 Samsung Electronics. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "config.h"
+#include "WKOpenPanelParametersRef.h"
+
+#include "APIArray.h"
+#include "WKAPICast.h"
+#include "WebOpenPanelParameters.h"
+
+using namespace WebKit;
+
+WKTypeID WKOpenPanelParametersGetTypeID()
+{
+ return toAPI(WebOpenPanelParameters::APIType);
+}
+
+bool WKOpenPanelParametersGetAllowsMultipleFiles(WKOpenPanelParametersRef parametersRef)
+{
+ return toImpl(parametersRef)->allowMultipleFiles();
+}
+
+WKArrayRef WKOpenPanelParametersCopyAcceptedMIMETypes(WKOpenPanelParametersRef parametersRef)
+{
+ return toAPI(&toImpl(parametersRef)->acceptMIMETypes().leakRef());
+}
+
+// Deprecated.
+WKStringRef WKOpenPanelParametersCopyCapture(WKOpenPanelParametersRef)
+{
+ return 0;
+}
+
+bool WKOpenPanelParametersGetCaptureEnabled(WKOpenPanelParametersRef parametersRef)
+{
+#if ENABLE(MEDIA_CAPTURE)
+ return toImpl(parametersRef)->capture();
+#else
+ UNUSED_PARAM(parametersRef);
+ return false;
+#endif
+}
+
+WKArrayRef WKOpenPanelParametersCopySelectedFileNames(WKOpenPanelParametersRef parametersRef)
+{
+ return toAPI(&toImpl(parametersRef)->selectedFileNames().leakRef());
+}
Copied: trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParametersRef.h (from rev 199309, trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParameters.h) (0 => 199311)
--- trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParametersRef.h (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKOpenPanelParametersRef.h 2016-04-11 21:32:30 UTC (rev 199311)
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2010 Apple Inc. All rights reserved.
+ * Copyright (C) 2012 Samsung Electronics. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef WKOpenPanelParametersRef_h
+#define WKOpenPanelParametersRef_h
+
+#include <WebKit/WKBase.h>
+
+#ifndef __cplusplus
+#include <stdbool.h>
+#endif
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+WK_EXPORT WKTypeID WKOpenPanelParametersGetTypeID();
+
+WK_EXPORT bool WKOpenPanelParametersGetAllowsMultipleFiles(WKOpenPanelParametersRef parameters);
+
+WK_EXPORT WKArrayRef WKOpenPanelParametersCopyAcceptedMIMETypes(WKOpenPanelParametersRef parameters);
+
+/* DEPRECATED - Please use WKOpenPanelParametersGetCaptureEnabled() instead. */
+WK_EXPORT WKStringRef WKOpenPanelParametersCopyCapture(WKOpenPanelParametersRef parameters);
+
+WK_EXPORT bool WKOpenPanelParametersGetCaptureEnabled(WKOpenPanelParametersRef parametersRef);
+
+WK_EXPORT WKArrayRef WKOpenPanelParametersCopySelectedFileNames(WKOpenPanelParametersRef parametersRef);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* WKOpenPanelParametersRef_h */
Modified: trunk/Source/WebKit2/UIProcess/API/C/WebKit2_C.h (199310 => 199311)
--- trunk/Source/WebKit2/UIProcess/API/C/WebKit2_C.h 2016-04-11 21:31:53 UTC (rev 199310)
+++ trunk/Source/WebKit2/UIProcess/API/C/WebKit2_C.h 2016-04-11 21:32:30 UTC (rev 199311)
@@ -48,7 +48,7 @@
#include <WebKit/WKMutableDictionary.h>
#include <WebKit/WKNavigationDataRef.h>
#include <WebKit/WKNumber.h>
-#include <WebKit/WKOpenPanelParameters.h>
+#include <WebKit/WKOpenPanelParametersRef.h>
#include <WebKit/WKOpenPanelResultListener.h>
#include <WebKit/WKPage.h>
#include <WebKit/WKPageConfigurationRef.h>
Modified: trunk/Source/WebKit2/UIProcess/API/efl/ewk_file_chooser_request.cpp (199310 => 199311)
--- trunk/Source/WebKit2/UIProcess/API/efl/ewk_file_chooser_request.cpp 2016-04-11 21:31:53 UTC (rev 199310)
+++ trunk/Source/WebKit2/UIProcess/API/efl/ewk_file_chooser_request.cpp 2016-04-11 21:32:30 UTC (rev 199311)
@@ -27,7 +27,7 @@
#include "ewk_file_chooser_request.h"
#include "WKArray.h"
-#include "WKOpenPanelParameters.h"
+#include "WKOpenPanelParametersRef.h"
#include "WKOpenPanelResultListener.h"
#include "WKSharedAPICast.h"
#include "WKString.h"
Modified: trunk/Source/WebKit2/UIProcess/mac/WebInspectorProxyMac.mm (199310 => 199311)
--- trunk/Source/WebKit2/UIProcess/mac/WebInspectorProxyMac.mm 2016-04-11 21:31:53 UTC (rev 199310)
+++ trunk/Source/WebKit2/UIProcess/mac/WebInspectorProxyMac.mm 2016-04-11 21:32:30 UTC (rev 199311)
@@ -31,7 +31,7 @@
#import "WKAPICast.h"
#import "WKInspectorPrivateMac.h"
#import "WKMutableArray.h"
-#import "WKOpenPanelParameters.h"
+#import "WKOpenPanelParametersRef.h"
#import "WKOpenPanelResultListener.h"
#import "WKPreferencesInternal.h"
#import "WKProcessPoolInternal.h"
Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (199310 => 199311)
--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj 2016-04-11 21:31:53 UTC (rev 199310)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj 2016-04-11 21:32:30 UTC (rev 199311)
@@ -1506,9 +1506,9 @@
BC857F8612B82D0B00EDEB2E /* WebOpenPanelResultListener.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC857F8412B82D0B00EDEB2E /* WebOpenPanelResultListener.cpp */; };
BC857FB512B830E600EDEB2E /* WebOpenPanelParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = BC857FB312B830E600EDEB2E /* WebOpenPanelParameters.h */; };
BC857FB612B830E600EDEB2E /* WebOpenPanelParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC857FB412B830E600EDEB2E /* WebOpenPanelParameters.cpp */; };
- BC857FE612B843D800EDEB2E /* WKOpenPanelParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = BC857FE412B843D800EDEB2E /* WKOpenPanelParameters.h */; settings = {ATTRIBUTES = (Private, ); }; };
+ BC857FE612B843D800EDEB2E /* WKOpenPanelParametersRef.h in Headers */ = {isa = PBXBuildFile; fileRef = BC857FE412B843D800EDEB2E /* WKOpenPanelParametersRef.h */; settings = {ATTRIBUTES = (Private, ); }; };
BC85806212B8505700EDEB2E /* WKOpenPanelResultListener.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC1DFE8E12B31CA8005DF730 /* WKOpenPanelResultListener.cpp */; };
- BC85806312B8505700EDEB2E /* WKOpenPanelParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC857FE512B843D800EDEB2E /* WKOpenPanelParameters.cpp */; };
+ BC85806312B8505700EDEB2E /* WKOpenPanelParametersRef.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC857FE512B843D800EDEB2E /* WKOpenPanelParametersRef.cpp */; };
BC8699B5116AADAA002A925B /* WKView.h in Headers */ = {isa = PBXBuildFile; fileRef = BC8699B2116AADAA002A925B /* WKView.h */; settings = {ATTRIBUTES = (Private, ); }; };
BC8699B6116AADAA002A925B /* WKView.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC8699B3116AADAA002A925B /* WKView.mm */; };
BC8699B7116AADAA002A925B /* WKViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BC8699B4116AADAA002A925B /* WKViewInternal.h */; };
@@ -3563,8 +3563,8 @@
BC857F8412B82D0B00EDEB2E /* WebOpenPanelResultListener.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebOpenPanelResultListener.cpp; sourceTree = "<group>"; };
BC857FB312B830E600EDEB2E /* WebOpenPanelParameters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebOpenPanelParameters.h; sourceTree = "<group>"; };
BC857FB412B830E600EDEB2E /* WebOpenPanelParameters.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebOpenPanelParameters.cpp; sourceTree = "<group>"; };
- BC857FE412B843D800EDEB2E /* WKOpenPanelParameters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKOpenPanelParameters.h; sourceTree = "<group>"; };
- BC857FE512B843D800EDEB2E /* WKOpenPanelParameters.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WKOpenPanelParameters.cpp; sourceTree = "<group>"; };
+ BC857FE412B843D800EDEB2E /* WKOpenPanelParametersRef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKOpenPanelParametersRef.h; sourceTree = "<group>"; };
+ BC857FE512B843D800EDEB2E /* WKOpenPanelParametersRef.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WKOpenPanelParametersRef.cpp; sourceTree = "<group>"; };
BC8699B2116AADAA002A925B /* WKView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKView.h; sourceTree = "<group>"; };
BC8699B3116AADAA002A925B /* WKView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKView.mm; sourceTree = "<group>"; };
BC8699B4116AADAA002A925B /* WKViewInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKViewInternal.h; sourceTree = "<group>"; };
@@ -6104,8 +6104,8 @@
31A2EC75148D65BB00810D71 /* WKNotificationPermissionRequest.cpp */,
31A2EC72148D59BB00810D71 /* WKNotificationPermissionRequest.h */,
312C0C49146DDC8A0016C911 /* WKNotificationProvider.h */,
- BC857FE512B843D800EDEB2E /* WKOpenPanelParameters.cpp */,
- BC857FE412B843D800EDEB2E /* WKOpenPanelParameters.h */,
+ BC857FE512B843D800EDEB2E /* WKOpenPanelParametersRef.cpp */,
+ BC857FE412B843D800EDEB2E /* WKOpenPanelParametersRef.h */,
BC1DFE8E12B31CA8005DF730 /* WKOpenPanelResultListener.cpp */,
BC1DFE8D12B31CA8005DF730 /* WKOpenPanelResultListener.h */,
BCD597D4112B56DC00EC8C23 /* WKPage.cpp */,
@@ -7955,7 +7955,7 @@
BC407602124FF0270068F20A /* WKNumber.h in Headers */,
7CD5EBB91746A15B000C1C45 /* WKObjCTypeWrapperRef.h in Headers */,
378E1A40181EDA010031007A /* WKObject.h in Headers */,
- BC857FE612B843D800EDEB2E /* WKOpenPanelParameters.h in Headers */,
+ BC857FE612B843D800EDEB2E /* WKOpenPanelParametersRef.h in Headers */,
BC1DFE8F12B31CA8005DF730 /* WKOpenPanelResultListener.h in Headers */,
BCD597D7112B56DC00EC8C23 /* WKPage.h in Headers */,
7C89D29C1A67837B003A5FDE /* WKPageConfigurationRef.h in Headers */,
@@ -9400,7 +9400,7 @@
BC407601124FF0270068F20A /* WKNumber.cpp in Sources */,
7CD5EBB81746A15B000C1C45 /* WKObjCTypeWrapperRef.mm in Sources */,
374436881820E7240049579F /* WKObject.mm in Sources */,
- BC85806312B8505700EDEB2E /* WKOpenPanelParameters.cpp in Sources */,
+ BC85806312B8505700EDEB2E /* WKOpenPanelParametersRef.cpp in Sources */,
BC85806212B8505700EDEB2E /* WKOpenPanelResultListener.cpp in Sources */,
BCD597D6112B56DC00EC8C23 /* WKPage.cpp in Sources */,
7C89D29B1A67837B003A5FDE /* WKPageConfigurationRef.cpp in Sources */,