[webkit-changes] cvs commit: WebCore/kwq WebCoreBridge.h
WebCoreBridge.mm
Justin
justing at opensource.apple.com
Wed Sep 14 18:25:55 PDT 2005
justing 05/09/14 18:25:55
Modified: . ChangeLog
kwq WebCoreBridge.h WebCoreBridge.mm
Log:
Reviewed by john
Test cases added: none, method rename
Part of fix for <rdar://problem/4237479> REGRESSION (Cambridge-Denver): old QuickTime movie continues to play sound after reload
* kwq/WebCoreBridge.h:
* kwq/WebCoreBridge.mm:
(-[WebCoreBridge handleFallbackContent]):
Renamed bridge method mainResourceError to handleFallbackContent, since there are some
main resource errors for which we should not render fallback content. E.G user cancels
and the cancel we do to prevent loading plugin content twice (see <rdar://problem/4258008>)
Revision Changes Path
1.123 +15 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog 15 Sep 2005 00:57:25 -0000 1.122
+++ ChangeLog 15 Sep 2005 01:25:53 -0000 1.123
@@ -1,3 +1,18 @@
+2005-09-14 Justin Garcia <justin.garcia at apple.com>
+
+ Reviewed by john
+
+ Test cases added: none, method rename
+
+ Part of fix for <rdar://problem/4237479> REGRESSION (Cambridge-Denver): old QuickTime movie continues to play sound after reload
+
+ * kwq/WebCoreBridge.h:
+ * kwq/WebCoreBridge.mm:
+ (-[WebCoreBridge handleFallbackContent]):
+ Renamed bridge method mainResourceError to handleFallbackContent, since there are some
+ main resource errors for which we should not render fallback content. E.G user cancels
+ and the cancel we do to prevent loading plugin content twice (see <rdar://problem/4258008>)
+
2005-09-14 David Harrison <harrison at apple.com>
Reviewed by Eric.
1.346 +1 -1 WebCore/kwq/WebCoreBridge.h
Index: WebCoreBridge.h
===================================================================
RCS file: /cvs/root/WebCore/kwq/WebCoreBridge.h,v
retrieving revision 1.345
retrieving revision 1.346
diff -u -r1.345 -r1.346
--- WebCoreBridge.h 17 Aug 2005 20:12:15 -0000 1.345
+++ WebCoreBridge.h 15 Sep 2005 01:25:54 -0000 1.346
@@ -228,7 +228,7 @@
- (void)end;
- (void)stop;
-- (void)mainResourceError;
+- (void)handleFallbackContent;
- (NSURL *)URL;
- (NSURL *)baseURL;
1.413 +1 -1 WebCore/kwq/WebCoreBridge.mm
Index: WebCoreBridge.mm
===================================================================
RCS file: /cvs/root/WebCore/kwq/WebCoreBridge.mm,v
retrieving revision 1.412
retrieving revision 1.413
diff -u -r1.412 -r1.413
--- WebCoreBridge.mm 14 Sep 2005 03:43:02 -0000 1.412
+++ WebCoreBridge.mm 15 Sep 2005 01:25:54 -0000 1.413
@@ -501,7 +501,7 @@
_part->stop();
}
-- (void)mainResourceError
+- (void)handleFallbackContent
{
_part->handleFallbackContent();
}
More information about the webkit-changes
mailing list