Title: [151070] trunk/Source/WebKit/mac
- Revision
- 151070
- Author
- [email protected]
- Date
- 2013-06-01 02:48:33 -0700 (Sat, 01 Jun 2013)
Log Message
Remove unnused WebDOMNodeOperationsInternal category.
<http://webkit.org/b/117105>
Reviewed by Ryosuke Niwa.
_subresourceURLs had no clients.
* DOM/WebDOMOperations.mm:
Modified Paths
Diff
Modified: trunk/Source/WebKit/mac/ChangeLog (151069 => 151070)
--- trunk/Source/WebKit/mac/ChangeLog 2013-06-01 09:39:59 UTC (rev 151069)
+++ trunk/Source/WebKit/mac/ChangeLog 2013-06-01 09:48:33 UTC (rev 151070)
@@ -1,5 +1,16 @@
2013-06-01 Andreas Kling <[email protected]>
+ Remove unnused WebDOMNodeOperationsInternal category.
+ <http://webkit.org/b/117105>
+
+ Reviewed by Ryosuke Niwa.
+
+ _subresourceURLs had no clients.
+
+ * DOM/WebDOMOperations.mm:
+
+2013-06-01 Andreas Kling <[email protected]>
+
Move Node::hasID() and hasClass() to Element.
<http://webkit.org/b/117104>
Modified: trunk/Source/WebKit/mac/DOM/WebDOMOperations.mm (151069 => 151070)
--- trunk/Source/WebKit/mac/DOM/WebDOMOperations.mm 2013-06-01 09:39:59 UTC (rev 151069)
+++ trunk/Source/WebKit/mac/DOM/WebDOMOperations.mm 2013-06-01 09:48:33 UTC (rev 151070)
@@ -132,26 +132,6 @@
@end
-/* This doesn't appear to be used by anyone. We should consider removing this. */
-@implementation DOMNode (WebDOMNodeOperationsInternal)
-
-- (NSArray *)_subresourceURLs
-{
- ListHashSet<KURL> urls;
- core(self)->getSubresourceURLs(urls);
- if (!urls.size())
- return nil;
-
- NSMutableArray *array = [NSMutableArray arrayWithCapacity:urls.size()];
- ListHashSet<KURL>::iterator end = urls.end();
- for (ListHashSet<KURL>::iterator it = urls.begin(); it != end; ++it)
- [array addObject:(NSURL *)*it];
-
- return array;
-}
-
-@end
-
@implementation DOMDocument (WebDOMDocumentOperations)
- (WebFrame *)webFrame
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes