Title: [141488] trunk/Source/WebKit2
- Revision
- 141488
- Author
- [email protected]
- Date
- 2013-01-31 14:28:41 -0800 (Thu, 31 Jan 2013)
Log Message
Unreviewed trivial Unix build fix.
Use Vector<> instead of Deque<> when iterating
over m_attachments in the USE(UNIX_DOMAIN_SOCKETS)
case.
* Platform/CoreIPC/ArgumentDecoder.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (141487 => 141488)
--- trunk/Source/WebKit2/ChangeLog 2013-01-31 22:23:43 UTC (rev 141487)
+++ trunk/Source/WebKit2/ChangeLog 2013-01-31 22:28:41 UTC (rev 141488)
@@ -1,3 +1,13 @@
+2013-01-31 Simon Hausmann <[email protected]>
+
+ Unreviewed trivial Unix build fix.
+
+ Use Vector<> instead of Deque<> when iterating
+ over m_attachments in the USE(UNIX_DOMAIN_SOCKETS)
+ case.
+
+ * Platform/CoreIPC/ArgumentDecoder.cpp:
+
2013-01-30 Brian Weinstein <[email protected]>
Add a call to the page UI client to determine if a plug-in should load
Modified: trunk/Source/WebKit2/Platform/CoreIPC/ArgumentDecoder.cpp (141487 => 141488)
--- trunk/Source/WebKit2/Platform/CoreIPC/ArgumentDecoder.cpp 2013-01-31 22:23:43 UTC (rev 141487)
+++ trunk/Source/WebKit2/Platform/CoreIPC/ArgumentDecoder.cpp 2013-01-31 22:28:41 UTC (rev 141488)
@@ -51,8 +51,8 @@
#if !USE(UNIX_DOMAIN_SOCKETS)
// FIXME: We need to dispose of the mach ports in cases of failure.
#else
- Deque<Attachment>::iterator end = m_attachments.end();
- for (Deque<Attachment>::iterator it = m_attachments.begin(); it != end; ++it)
+ Vector<Attachment>::iterator end = m_attachments.end();
+ for (Vector<Attachment>::iterator it = m_attachments.begin(); it != end; ++it)
it->dispose();
#endif
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes