Title: [86814] trunk/Source/WebKit2
Revision
86814
Author
[email protected]
Date
2011-05-18 19:28:48 -0700 (Wed, 18 May 2011)

Log Message

Fix the WK2 SnowLeopard layouttests (again) until I can explore on a SnowLeopard machine tomorrow.

* UIProcess/Launcher/mac/ProcessLauncherMac.mm:
(WebKit::ProcessLauncher::launchProcess):
* WebProcess/mac/WebProcessMainMac.mm:
(WebKit::WebProcessMain):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (86813 => 86814)


--- trunk/Source/WebKit2/ChangeLog	2011-05-19 01:38:03 UTC (rev 86813)
+++ trunk/Source/WebKit2/ChangeLog	2011-05-19 02:28:48 UTC (rev 86814)
@@ -1,3 +1,12 @@
+2011-05-18  Brady Eidson  <[email protected]>
+
+        Fix the WK2 SnowLeopard layouttests (again) until I can explore on a SnowLeopard machine tomorrow.
+
+        * UIProcess/Launcher/mac/ProcessLauncherMac.mm:
+        (WebKit::ProcessLauncher::launchProcess):
+        * WebProcess/mac/WebProcessMainMac.mm:
+        (WebKit::WebProcessMain):
+
 2011-05-18  Darin Adler  <[email protected]>
 
         Reviewed by Anders Carlsson.

Modified: trunk/Source/WebKit2/UIProcess/Launcher/mac/ProcessLauncherMac.mm (86813 => 86814)


--- trunk/Source/WebKit2/UIProcess/Launcher/mac/ProcessLauncherMac.mm	2011-05-19 01:38:03 UTC (rev 86813)
+++ trunk/Source/WebKit2/UIProcess/Launcher/mac/ProcessLauncherMac.mm	2011-05-19 02:28:48 UTC (rev 86814)
@@ -145,9 +145,10 @@
     NSString *processShimPathNSString = nil;
     if (m_launchOptions.processType == ProcessLauncher::PluginProcess)
         processShimPathNSString = [[processAppExecutablePath stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"PluginProcessShim.dylib"];
+#ifndef BUILDING_ON_SNOWLEOPARD
     else if (m_launchOptions.processType == ProcessLauncher::WebProcess)
         processShimPathNSString = [[processAppExecutablePath stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"WebProcessShim.dylib"];
-    
+#endif
     // Make sure that the shim library file exists and insert it.
     if (processShimPathNSString) {
         const char* processShimPath = [processShimPathNSString fileSystemRepresentation];

Modified: trunk/Source/WebKit2/WebProcess/mac/WebProcessMainMac.mm (86813 => 86814)


--- trunk/Source/WebKit2/WebProcess/mac/WebProcessMainMac.mm	2011-05-19 01:38:03 UTC (rev 86813)
+++ trunk/Source/WebKit2/WebProcess/mac/WebProcessMainMac.mm	2011-05-19 02:28:48 UTC (rev 86814)
@@ -99,7 +99,9 @@
     RunLoop::initializeMainRunLoop();
 
     // Initialize the shim.
+#ifndef BUILDING_ON_SNOWLEOPARD
     WebProcess::shared().initializeShim();
+#endif
 
     // Create the connection.
     WebProcess::shared().initialize(serverPort, RunLoop::main());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to