Title: [98160] trunk/Source/WebKit2
Revision
98160
Author
[email protected]
Date
2011-10-21 15:26:24 -0700 (Fri, 21 Oct 2011)

Log Message

Rename WKProcessCluster to WKProcessGroup
https://bugs.webkit.org/show_bug.cgi?id=70654

Reviewed by Simon Fraser.

* UIProcess/API/mac/WKProcessCluster.h: Removed.
* UIProcess/API/mac/WKProcessCluster.mm: Removed.
* UIProcess/API/mac/WKProcessClusterInternal.h: Removed.
* UIProcess/API/mac/WKProcessGroup.h: Copied from Source/WebKit2/UIProcess/API/mac/WKProcessCluster.h.
* UIProcess/API/mac/WKProcessGroup.mm: Copied from Source/WebKit2/UIProcess/API/mac/WKProcessCluster.mm.
(-[WKProcessGroup initWithInjectedBundleURL:]):
* UIProcess/API/mac/WKProcessGroupInternal.h: Copied from Source/WebKit2/UIProcess/API/mac/WKProcessClusterInternal.h.
* UIProcess/API/mac/WKView.h:
* UIProcess/API/mac/WKView.mm:
(-[WKView initWithFrame:processCluster:]):
* WebKit2.xcodeproj/project.pbxproj:

Modified Paths

Added Paths

Removed Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (98159 => 98160)


--- trunk/Source/WebKit2/ChangeLog	2011-10-21 22:09:22 UTC (rev 98159)
+++ trunk/Source/WebKit2/ChangeLog	2011-10-21 22:26:24 UTC (rev 98160)
@@ -1,5 +1,24 @@
 2011-10-21  Sam Weinig  <[email protected]>
 
+        Rename WKProcessCluster to WKProcessGroup
+        https://bugs.webkit.org/show_bug.cgi?id=70654
+
+        Reviewed by Simon Fraser.
+
+        * UIProcess/API/mac/WKProcessCluster.h: Removed.
+        * UIProcess/API/mac/WKProcessCluster.mm: Removed.
+        * UIProcess/API/mac/WKProcessClusterInternal.h: Removed.
+        * UIProcess/API/mac/WKProcessGroup.h: Copied from Source/WebKit2/UIProcess/API/mac/WKProcessCluster.h.
+        * UIProcess/API/mac/WKProcessGroup.mm: Copied from Source/WebKit2/UIProcess/API/mac/WKProcessCluster.mm.
+        (-[WKProcessGroup initWithInjectedBundleURL:]):
+        * UIProcess/API/mac/WKProcessGroupInternal.h: Copied from Source/WebKit2/UIProcess/API/mac/WKProcessClusterInternal.h.
+        * UIProcess/API/mac/WKView.h:
+        * UIProcess/API/mac/WKView.mm:
+        (-[WKView initWithFrame:processCluster:]):
+        * WebKit2.xcodeproj/project.pbxproj:
+
+2011-10-21  Sam Weinig  <[email protected]>
+
         Remove ability to create a WKView without a WKContextRef and WKPageGroupRef
         https://bugs.webkit.org/show_bug.cgi?id=70653
 

Deleted: trunk/Source/WebKit2/UIProcess/API/mac/WKProcessCluster.h (98159 => 98160)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKProcessCluster.h	2011-10-21 22:09:22 UTC (rev 98159)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKProcessCluster.h	2011-10-21 22:26:24 UTC (rev 98160)
@@ -1,40 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. 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.
- */
-
-#import <Foundation/Foundation.h>
-#import <WebKit2/WKBase.h>
-
-@class WKProcessClusterData;
-
-WK_EXPORT
-@interface WKProcessCluster : NSObject
-{
-    WKProcessClusterData *_data;
-}
-
-- (id)init;
-- (id)initWithInjectedBundleURL:(NSURL *)bundleURL;
-
-@end

Deleted: trunk/Source/WebKit2/UIProcess/API/mac/WKProcessCluster.mm (98159 => 98160)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKProcessCluster.mm	2011-10-21 22:09:22 UTC (rev 98159)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKProcessCluster.mm	2011-10-21 22:26:24 UTC (rev 98160)
@@ -1,84 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. 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.
- */
-
-#import "config.h"
-#import "WKProcessCluster.h"
-#import "WKProcessClusterInternal.h"
-
-#import "WKContext.h"
-#import "WKRetainPtr.h"
-#import "WKStringCF.h"
-
-@interface WKProcessClusterData : NSObject {
-@public
-    WKRetainPtr<WKContextRef> _contextRef;
-}
-@end
-
-@implementation WKProcessClusterData
-@end
-
-@implementation WKProcessCluster
-
-- (id)init
-{
-    return [self initWithInjectedBundleURL:nil];
-}
-
-- (id)initWithInjectedBundleURL:(NSURL *)bundleURL
-{
-    self = [super init];
-    if (!self)
-        return nil;
-
-    _data = [[WKProcessClusterData alloc] init];
-    
-    if (bundleURL) {
-        WKRetainPtr<WKStringRef> bundleURLString = adoptWK(WKStringCreateWithCFString((CFStringRef)[bundleURL absoluteString]));
-        _data->_contextRef = adoptWK(WKContextCreateWithInjectedBundlePath(bundleURLString.get()));
-    } else
-        _data->_contextRef = adoptWK(WKContextCreate());
-
-    return self;
-}
-
-- (void)dealloc
-{
-    [_data release];
-    [super dealloc];
-}
-
-@end
-
-@implementation WKProcessCluster (Internal)
-
-- (WKContextRef)contextRef
-{
-    return _data->_contextRef.get();
-}
-
-@end
-
-

Deleted: trunk/Source/WebKit2/UIProcess/API/mac/WKProcessClusterInternal.h (98159 => 98160)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKProcessClusterInternal.h	2011-10-21 22:09:22 UTC (rev 98159)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKProcessClusterInternal.h	2011-10-21 22:26:24 UTC (rev 98160)
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. 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.
- */
-
-#import <WebKit2/WKProcessCluster.h>
-
-@interface WKProcessCluster (Internal)
-
-@property(readonly) WKContextRef contextRef;
-
-@end

Copied: trunk/Source/WebKit2/UIProcess/API/mac/WKProcessGroup.h (from rev 98156, trunk/Source/WebKit2/UIProcess/API/mac/WKProcessCluster.h) (0 => 98160)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKProcessGroup.h	                        (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKProcessGroup.h	2011-10-21 22:26:24 UTC (rev 98160)
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2011 Apple Inc. 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.
+ */
+
+#import <Foundation/Foundation.h>
+#import <WebKit2/WKBase.h>
+
+@class WKProcessGroupData;
+
+WK_EXPORT
+@interface WKProcessGroup : NSObject {
+@private
+    WKProcessGroupData *_data;
+}
+
+- (id)initWithInjectedBundleURL:(NSURL *)bundleURL;
+
+@end

Copied: trunk/Source/WebKit2/UIProcess/API/mac/WKProcessGroup.mm (from rev 98156, trunk/Source/WebKit2/UIProcess/API/mac/WKProcessCluster.mm) (0 => 98160)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKProcessGroup.mm	                        (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKProcessGroup.mm	2011-10-21 22:26:24 UTC (rev 98160)
@@ -0,0 +1,84 @@
+/*
+ * Copyright (C) 2011 Apple Inc. 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.
+ */
+
+#import "config.h"
+#import "WKProcessGroup.h"
+#import "WKProcessGroupInternal.h"
+
+#import "WKContext.h"
+#import "WKRetainPtr.h"
+#import "WKStringCF.h"
+
+@interface WKProcessGroupData : NSObject {
+@public
+    WKRetainPtr<WKContextRef> _contextRef;
+}
+@end
+
+@implementation WKProcessGroupData
+@end
+
+@implementation WKProcessGroup
+
+- (id)init
+{
+    return [self initWithInjectedBundleURL:nil];
+}
+
+- (id)initWithInjectedBundleURL:(NSURL *)bundleURL
+{
+    self = [super init];
+    if (!self)
+        return nil;
+
+    _data = [[WKProcessGroupData alloc] init];
+    
+    if (bundleURL) {
+        WKRetainPtr<WKStringRef> bundleURLString = adoptWK(WKStringCreateWithCFString((CFStringRef)[bundleURL absoluteString]));
+        _data->_contextRef = adoptWK(WKContextCreateWithInjectedBundlePath(bundleURLString.get()));
+    } else
+        _data->_contextRef = adoptWK(WKContextCreate());
+
+    return self;
+}
+
+- (void)dealloc
+{
+    [_data release];
+    [super dealloc];
+}
+
+@end
+
+@implementation WKProcessGroup (Internal)
+
+- (WKContextRef)contextRef
+{
+    return _data->_contextRef.get();
+}
+
+@end
+
+

Copied: trunk/Source/WebKit2/UIProcess/API/mac/WKProcessGroupInternal.h (from rev 98156, trunk/Source/WebKit2/UIProcess/API/mac/WKProcessClusterInternal.h) (0 => 98160)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKProcessGroupInternal.h	                        (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKProcessGroupInternal.h	2011-10-21 22:26:24 UTC (rev 98160)
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2011 Apple Inc. 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.
+ */
+
+#import <WebKit2/WKProcessGroup.h>
+
+@interface WKProcessGroup (Internal)
+
+@property(readonly) WKContextRef contextRef;
+
+@end

Modified: trunk/Source/WebKit2/UIProcess/API/mac/WKView.h (98159 => 98160)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKView.h	2011-10-21 22:09:22 UTC (rev 98159)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKView.h	2011-10-21 22:26:24 UTC (rev 98160)
@@ -27,7 +27,7 @@
 #import <WebKit2/WKBase.h>
 
 @class WKBrowsingContextController;
-@class WKProcessCluster;
+@class WKProcessGroup;
 @class WKViewData;
 
 WK_EXPORT
@@ -36,7 +36,7 @@
     unsigned _unused;
 }
 
-- (id)initWithFrame:(NSRect)frame processCluster:(WKProcessCluster *)processCluster;
+- (id)initWithFrame:(NSRect)frame processCluster:(WKProcessGroup *)processCluster;
 
 @property(readonly) WKBrowsingContextController *browsingContextController;
 

Modified: trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm (98159 => 98160)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm	2011-10-21 22:09:22 UTC (rev 98159)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm	2011-10-21 22:26:24 UTC (rev 98160)
@@ -73,7 +73,7 @@
 #import <wtf/RetainPtr.h>
 
 /* API internals. */
-#import "WKProcessClusterInternal.h"
+#import "WKProcessGroupInternal.h"
 #import "WKBrowsingContextControllerInternal.h"
 
 
@@ -198,7 +198,7 @@
 
 @implementation WKView
 
-- (id)initWithFrame:(NSRect)frame processCluster:(WKProcessCluster *)processCluster
+- (id)initWithFrame:(NSRect)frame processCluster:(WKProcessGroup *)processCluster
 {
     return [self initWithFrame:frame contextRef:processCluster.contextRef pageGroupRef:0];
 }

Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (98159 => 98160)


--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj	2011-10-21 22:09:22 UTC (rev 98159)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj	2011-10-21 22:26:24 UTC (rev 98160)
@@ -689,9 +689,9 @@
 		BCBAAC72144E61990053F82F /* WKBrowsingContextController.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCBAAC6D144E61920053F82F /* WKBrowsingContextController.mm */; };
 		BCBAAC73144E619E0053F82F /* WKBrowsingContextController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBAAC6C144E61910053F82F /* WKBrowsingContextController.h */; settings = {ATTRIBUTES = (Public, ); }; };
 		BCBAAC74144E61A50053F82F /* WKBrowsingContextControllerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBAAC6E144E61920053F82F /* WKBrowsingContextControllerInternal.h */; settings = {ATTRIBUTES = (); }; };
-		BCBAAC77144E6CB40053F82F /* WKProcessCluster.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBAAC75144E6CB20053F82F /* WKProcessCluster.h */; settings = {ATTRIBUTES = (Public, ); }; };
-		BCBAAC78144E6CB40053F82F /* WKProcessCluster.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCBAAC76144E6CB20053F82F /* WKProcessCluster.mm */; };
-		BCBAAC7B144E70590053F82F /* WKProcessClusterInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBAAC79144E70560053F82F /* WKProcessClusterInternal.h */; };
+		BCBAACEB145225E30053F82F /* WKProcessGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBAACE5145225C90053F82F /* WKProcessGroup.h */; settings = {ATTRIBUTES = (Public, ); }; };
+		BCBAACEC145225E30053F82F /* WKProcessGroup.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCBAACE6145225CA0053F82F /* WKProcessGroup.mm */; };
+		BCBAACED145225E30053F82F /* WKProcessGroupInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBAACE7145225CB0053F82F /* WKProcessGroupInternal.h */; };
 		BCBCB0CB1215E32100DE59CA /* ImmutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBCB0CA1215E32100DE59CA /* ImmutableDictionary.h */; };
 		BCBCB0CD1215E33A00DE59CA /* ImmutableDictionary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCBCB0CC1215E33A00DE59CA /* ImmutableDictionary.cpp */; };
 		BCBD3914125BB1A800D2C29F /* WebPageProxyMessageReceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCBD3912125BB1A800D2C29F /* WebPageProxyMessageReceiver.cpp */; };
@@ -1651,9 +1651,9 @@
 		BCBAAC6C144E61910053F82F /* WKBrowsingContextController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKBrowsingContextController.h; sourceTree = "<group>"; };
 		BCBAAC6D144E61920053F82F /* WKBrowsingContextController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKBrowsingContextController.mm; sourceTree = "<group>"; };
 		BCBAAC6E144E61920053F82F /* WKBrowsingContextControllerInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKBrowsingContextControllerInternal.h; sourceTree = "<group>"; };
-		BCBAAC75144E6CB20053F82F /* WKProcessCluster.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKProcessCluster.h; sourceTree = "<group>"; };
-		BCBAAC76144E6CB20053F82F /* WKProcessCluster.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKProcessCluster.mm; sourceTree = "<group>"; };
-		BCBAAC79144E70560053F82F /* WKProcessClusterInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKProcessClusterInternal.h; sourceTree = "<group>"; };
+		BCBAACE5145225C90053F82F /* WKProcessGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKProcessGroup.h; sourceTree = "<group>"; };
+		BCBAACE6145225CA0053F82F /* WKProcessGroup.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKProcessGroup.mm; sourceTree = "<group>"; };
+		BCBAACE7145225CB0053F82F /* WKProcessGroupInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKProcessGroupInternal.h; sourceTree = "<group>"; };
 		BCBCB0CA1215E32100DE59CA /* ImmutableDictionary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImmutableDictionary.h; sourceTree = "<group>"; };
 		BCBCB0CC1215E33A00DE59CA /* ImmutableDictionary.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ImmutableDictionary.cpp; sourceTree = "<group>"; };
 		BCBD38FA125BAB9A00D2C29F /* WebPageProxy.messages.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = WebPageProxy.messages.in; sourceTree = "<group>"; };
@@ -2925,9 +2925,9 @@
 				BCBAAC6C144E61910053F82F /* WKBrowsingContextController.h */,
 				BCBAAC6D144E61920053F82F /* WKBrowsingContextController.mm */,
 				BCBAAC6E144E61920053F82F /* WKBrowsingContextControllerInternal.h */,
-				BCBAAC75144E6CB20053F82F /* WKProcessCluster.h */,
-				BCBAAC76144E6CB20053F82F /* WKProcessCluster.mm */,
-				BCBAAC79144E70560053F82F /* WKProcessClusterInternal.h */,
+				BCBAACE5145225C90053F82F /* WKProcessGroup.h */,
+				BCBAACE6145225CA0053F82F /* WKProcessGroup.mm */,
+				BCBAACE7145225CB0053F82F /* WKProcessGroupInternal.h */,
 				BC8699B2116AADAA002A925B /* WKView.h */,
 				BC8699B3116AADAA002A925B /* WKView.mm */,
 				BC8699B4116AADAA002A925B /* WKViewInternal.h */,
@@ -3910,8 +3910,8 @@
 				0F174AA3142A4CB70039250F /* WebGeometry.h in Headers */,
 				BCBAAC73144E619E0053F82F /* WKBrowsingContextController.h in Headers */,
 				BCBAAC74144E61A50053F82F /* WKBrowsingContextControllerInternal.h in Headers */,
-				BCBAAC77144E6CB40053F82F /* WKProcessCluster.h in Headers */,
-				BCBAAC7B144E70590053F82F /* WKProcessClusterInternal.h in Headers */,
+				BCBAACEB145225E30053F82F /* WKProcessGroup.h in Headers */,
+				BCBAACED145225E30053F82F /* WKProcessGroupInternal.h in Headers */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -4602,7 +4602,7 @@
 				0F174AA7142AAC610039250F /* WKGeometry.cpp in Sources */,
 				B62E7310143047A60069EC35 /* WKHitTestResult.cpp in Sources */,
 				BCBAAC72144E61990053F82F /* WKBrowsingContextController.mm in Sources */,
-				BCBAAC78144E6CB40053F82F /* WKProcessCluster.mm in Sources */,
+				BCBAACEC145225E30053F82F /* WKProcessGroup.mm in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to