_______________________________________________Log Message
2010-09-08 Darin Adler <darin@apple.com> Reviewed by Adam Barth. Move functions from Frame to Editor as planned https://bugs.webkit.org/show_bug.cgi?id=45218 * src/ContextMenuClientImpl.cpp: (WebKit::selectMisspelledWord): (WebKit::ContextMenuClientImpl::getCustomMenuFromDefaultItems): * src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::find): (WebKit::WebFrameImpl::stopFinding): (WebKit::WebFrameImpl::scopeStringMatches): * src/WebViewImpl.cpp: (WebKit::WebViewImpl::caretOrSelectionBounds): Changed call sites to use editor().Modified Paths
Diff
Modified: trunk/WebKit/chromium/ChangeLog (67187 => 67188)
--- trunk/WebKit/chromium/ChangeLog 2010-09-10 10:57:49 UTC (rev 67187) +++ trunk/WebKit/chromium/ChangeLog 2010-09-10 11:36:40 UTC (rev 67188) @@ -53,13 +53,22 @@ * src/WebKit.cpp: (WebKit::areLayoutTestImagesOpaque): Make linux match windows. +2010-09-10 Jay Civelli <jcivelli@chromium.org> + + Reviewed by Darin Fisher. + + Add the destructor to WebDOMEvent to prevent a leak. + https://bugs.webkit.org/show_bug.cgi?id=45287 + + * public/WebDOMEvent.h: + (WebKit::WebDOMEvent::~WebDOMEvent): + 2010-09-09 Chris Guillory <chris.guillory@google.com> Reviewed by Chris Fleizach. Add methods used to determine accessibility state. https://bugs.webkit.org/show_bug.cgi?id=45434-* public/WebAccessibilityObject.h: * src/WebAccessibilityObject.cpp:Modified: trunk/WebKit/chromium/public/WebDOMEvent.h (67187 => 67188)
--- trunk/WebKit/chromium/public/WebDOMEvent.h 2010-09-10 10:57:49 UTC (rev 67187) +++ trunk/WebKit/chromium/public/WebDOMEvent.h 2010-09-10 11:36:40 UTC (rev 67188) @@ -50,6 +50,8 @@ BubblingPhase = 3 }; + ~WebDOMEvent() { reset(); } + WebDOMEvent() : m_private(0) { } WebDOMEvent(const WebDOMEvent& e) : m_private(0) { assign(e); } WebDOMEvent& operator=(const WebDOMEvent& e)
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes