Title: [94386] trunk
Revision
94386
Author
[email protected]
Date
2011-09-01 21:57:23 -0700 (Thu, 01 Sep 2011)

Log Message

Fix the build by adding some more missing return types.

Source/WebCore:

* page/mac/WebCoreViewFactory.m:
(-[WebCoreViewFactory init]):

Source/WebKit/mac:

* WebView/WebDashboardRegion.h:
* WebView/WebDashboardRegion.mm:
(-[WebDashboardRegion initWithRect:clip:type:]):

Tools:

* DumpRenderTree/mac/ResourceLoadDelegate.mm:
(-[ResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (94385 => 94386)


--- trunk/Source/WebCore/ChangeLog	2011-09-02 04:03:22 UTC (rev 94385)
+++ trunk/Source/WebCore/ChangeLog	2011-09-02 04:57:23 UTC (rev 94386)
@@ -1,3 +1,10 @@
+2011-09-01  Mark Rowe  <[email protected]>
+
+        Fix the build by adding some more missing return types.
+
+        * page/mac/WebCoreViewFactory.m:
+        (-[WebCoreViewFactory init]):
+
 2011-09-01  Michael Nordman  <[email protected]>
 
         [Chromium] Fix a crashing bug due to raciness around SQL database shutdown.

Modified: trunk/Source/WebCore/page/mac/WebCoreViewFactory.m (94385 => 94386)


--- trunk/Source/WebCore/page/mac/WebCoreViewFactory.m	2011-09-02 04:03:22 UTC (rev 94385)
+++ trunk/Source/WebCore/page/mac/WebCoreViewFactory.m	2011-09-02 04:57:23 UTC (rev 94386)
@@ -35,7 +35,7 @@
     return sharedFactory;
 }
 
-- init
+- (id)init
 {
     self = [super init];
     

Modified: trunk/Source/WebKit/mac/ChangeLog (94385 => 94386)


--- trunk/Source/WebKit/mac/ChangeLog	2011-09-02 04:03:22 UTC (rev 94385)
+++ trunk/Source/WebKit/mac/ChangeLog	2011-09-02 04:57:23 UTC (rev 94386)
@@ -1,3 +1,11 @@
+2011-09-01  Mark Rowe  <[email protected]>
+
+        Fix the build by adding some more missing return types.
+
+        * WebView/WebDashboardRegion.h:
+        * WebView/WebDashboardRegion.mm:
+        (-[WebDashboardRegion initWithRect:clip:type:]):
+
 2011-09-01  Tim Horton  <[email protected]>
 
         REGRESSION: Rendering artifacts on a rotated, pattern filled shape

Modified: trunk/Source/WebKit/mac/WebView/WebDashboardRegion.h (94385 => 94386)


--- trunk/Source/WebKit/mac/WebView/WebDashboardRegion.h	2011-09-02 04:03:22 UTC (rev 94385)
+++ trunk/Source/WebKit/mac/WebView/WebDashboardRegion.h	2011-09-02 04:57:23 UTC (rev 94386)
@@ -42,7 +42,7 @@
     NSRect clip;
     WebDashboardRegionType type;
 }
-- initWithRect:(NSRect)rect clip:(NSRect)clip type:(WebDashboardRegionType)type;
+- (id)initWithRect:(NSRect)rect clip:(NSRect)clip type:(WebDashboardRegionType)type;
 - (NSRect)dashboardRegionClip;
 - (NSRect)dashboardRegionRect;
 - (WebDashboardRegionType)dashboardRegionType;

Modified: trunk/Source/WebKit/mac/WebView/WebDashboardRegion.mm (94385 => 94386)


--- trunk/Source/WebKit/mac/WebView/WebDashboardRegion.mm	2011-09-02 04:03:22 UTC (rev 94385)
+++ trunk/Source/WebKit/mac/WebView/WebDashboardRegion.mm	2011-09-02 04:57:23 UTC (rev 94386)
@@ -31,7 +31,7 @@
 
 @implementation WebDashboardRegion
 
-- initWithRect:(NSRect)r clip:(NSRect)c type:(WebDashboardRegionType)t
+- (id)initWithRect:(NSRect)r clip:(NSRect)c type:(WebDashboardRegionType)t
 {
     self = [super init];
     rect = r;

Modified: trunk/Tools/ChangeLog (94385 => 94386)


--- trunk/Tools/ChangeLog	2011-09-02 04:03:22 UTC (rev 94385)
+++ trunk/Tools/ChangeLog	2011-09-02 04:57:23 UTC (rev 94386)
@@ -1,3 +1,10 @@
+2011-09-01  Mark Rowe  <[email protected]>
+
+        Fix the build by adding some more missing return types.
+
+        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
+        (-[ResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
+
 2011-09-01  Eric Seidel  <[email protected]>
 
         REGRESSION (NRWT): Leaks Viewer can't load leaks from test runs that used NRWT

Modified: trunk/Tools/DumpRenderTree/mac/ResourceLoadDelegate.mm (94385 => 94386)


--- trunk/Tools/DumpRenderTree/mac/ResourceLoadDelegate.mm	2011-09-02 04:03:22 UTC (rev 94385)
+++ trunk/Tools/DumpRenderTree/mac/ResourceLoadDelegate.mm	2011-09-02 04:57:23 UTC (rev 94386)
@@ -114,7 +114,7 @@
 
 @implementation ResourceLoadDelegate
 
-- webView: (WebView *)wv identifierForInitialRequest: (NSURLRequest *)request fromDataSource: (WebDataSource *)dataSource
+- (id)webView: (WebView *)wv identifierForInitialRequest: (NSURLRequest *)request fromDataSource: (WebDataSource *)dataSource
 {
     ASSERT([[dataSource webFrame] dataSource] || [[dataSource webFrame] provisionalDataSource]);
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to