Changeset 94080 in webkit
- Timestamp:
- Aug 30, 2011, 9:10:11 AM (15 years ago)
- Location:
- trunk/Source
- Files:
-
- 27 edited
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/loader/EmptyClients.h (modified) (1 diff)
-
WebCore/page/Chrome.cpp (modified) (1 diff)
-
WebCore/page/ChromeClient.h (modified) (1 diff)
-
WebKit/chromium/ChangeLog (modified) (1 diff)
-
WebKit/chromium/src/WebPopupMenuImpl.cpp (modified) (1 diff)
-
WebKit/chromium/src/WebPopupMenuImpl.h (modified) (1 diff)
-
WebKit/efl/ChangeLog (modified) (1 diff)
-
WebKit/efl/WebCoreSupport/ChromeClientEfl.h (modified) (1 diff)
-
WebKit/gtk/ChangeLog (modified) (1 diff)
-
WebKit/gtk/WebCoreSupport/ChromeClientGtk.h (modified) (1 diff)
-
WebKit/haiku/ChangeLog (modified) (1 diff)
-
WebKit/haiku/WebCoreSupport/ChromeClientHaiku.cpp (modified) (1 diff)
-
WebKit/mac/ChangeLog (modified) (1 diff)
-
WebKit/mac/WebCoreSupport/WebChromeClient.h (modified) (1 diff)
-
WebKit/mac/WebCoreSupport/WebChromeClient.mm (modified) (1 diff)
-
WebKit/qt/ChangeLog (modified) (1 diff)
-
WebKit/qt/WebCoreSupport/ChromeClientQt.h (modified) (1 diff)
-
WebKit/win/ChangeLog (modified) (1 diff)
-
WebKit/win/WebCoreSupport/WebChromeClient.h (modified) (1 diff)
-
WebKit/wince/ChangeLog (modified) (1 diff)
-
WebKit/wince/WebCoreSupport/ChromeClientWinCE.h (modified) (1 diff)
-
WebKit/wx/ChangeLog (modified) (1 diff)
-
WebKit/wx/WebKitSupport/ChromeClientWx.h (modified) (1 diff)
-
WebKit2/ChangeLog (modified) (1 diff)
-
WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp (modified) (1 diff)
-
WebKit2/WebProcess/WebCoreSupport/WebChromeClient.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r94079 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * loader/EmptyClients.h: 10 (WebCore::EmptyChromeClient::scrollRectIntoView): 11 * page/Chrome.cpp: 12 (WebCore::Chrome::scrollRectIntoView): 13 * page/ChromeClient.h: 14 (WebCore::ChromeClient::scrollRectIntoView): 15 1 16 2011-08-30 Ben Wells <benwells@chromium.org> 2 17 -
trunk/Source/WebCore/loader/EmptyClients.h
r93303 r94080 215 215 virtual void setCursorHiddenUntilMouseMoves(bool) { } 216 216 217 virtual void scrollRectIntoView(const IntRect& , const ScrollView*) const {}217 virtual void scrollRectIntoView(const IntRect&) const { } 218 218 219 219 virtual void requestGeolocationPermissionForFrame(Frame*, Geolocation*) {} -
trunk/Source/WebCore/page/Chrome.cpp
r93303 r94080 128 128 void Chrome::scrollRectIntoView(const IntRect& rect) const 129 129 { 130 // FIXME: The unused ScrollView* argument can and should be removed from ChromeClient::scrollRectIntoView. 131 m_client->scrollRectIntoView(rect, 0); 130 m_client->scrollRectIntoView(rect); 132 131 } 133 132 -
trunk/Source/WebCore/page/ChromeClient.h
r93303 r94080 169 169 virtual void contentsSizeChanged(Frame*, const IntSize&) const = 0; 170 170 virtual void layoutUpdated(Frame*) const { } 171 virtual void scrollRectIntoView(const IntRect& , const ScrollView*) const = 0; // Currently only Mac has a non empty implementation.171 virtual void scrollRectIntoView(const IntRect&) { }; // Currently only Mac has a non empty implementation. 172 172 173 173 virtual bool shouldMissingPluginMessageBeButton() const { return false; } -
trunk/Source/WebKit/chromium/ChangeLog
r94004 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * src/WebPopupMenuImpl.cpp: 10 (WebKit::WebPopupMenuImpl::scrollRectIntoView): 11 * src/WebPopupMenuImpl.h: 12 1 13 2011-08-29 Greg Billock <gbillock@google.com> 2 14 -
trunk/Source/WebKit/chromium/src/WebPopupMenuImpl.cpp
r93009 r94080 398 398 } 399 399 400 void WebPopupMenuImpl::scrollRectIntoView(const IntRect& , const ScrollView*) const400 void WebPopupMenuImpl::scrollRectIntoView(const IntRect&) const 401 401 { 402 402 // Nothing to be done here since we do not have the concept of a container -
trunk/Source/WebKit/chromium/src/WebPopupMenuImpl.h
r92699 r94080 129 129 virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&) const; 130 130 virtual PlatformPageClient platformPageClient() const { return 0; } 131 virtual void scrollRectIntoView(const WebCore::IntRect& , const WebCore::ScrollView*) const;131 virtual void scrollRectIntoView(const WebCore::IntRect&) const; 132 132 virtual void scrollbarsModeDidChange() const; 133 133 virtual void setCursor(const WebCore::Cursor&); -
trunk/Source/WebKit/efl/ChangeLog
r94063 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * WebCoreSupport/ChromeClientEfl.h: 10 (WebCore::ChromeClientEfl::scrollRectIntoView): 11 1 12 2011-08-30 Grzegorz Czajkowski <g.czajkowski@samsung.com> 2 13 -
trunk/Source/WebKit/efl/WebCoreSupport/ChromeClientEfl.h
r93303 r94080 148 148 virtual void setCursorHiddenUntilMouseMoves(bool); 149 149 150 virtual void scrollRectIntoView(const IntRect& , const ScrollView*) const { }150 virtual void scrollRectIntoView(const IntRect&) const { } 151 151 152 152 virtual void requestGeolocationPermissionForFrame(Frame*, Geolocation*); -
trunk/Source/WebKit/gtk/ChangeLog
r93867 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * WebCoreSupport/ChromeClientGtk.h: 10 (WebKit::ChromeClient::scrollRectIntoView): 11 1 12 2011-08-26 Gustavo Noronha Silva <gns@gnome.org> 2 13 -
trunk/Source/WebKit/gtk/WebCoreSupport/ChromeClientGtk.h
r93303 r94080 134 134 virtual void setCursorHiddenUntilMouseMoves(bool); 135 135 136 virtual void scrollRectIntoView(const WebCore::IntRect& , const WebCore::ScrollView*) const {}136 virtual void scrollRectIntoView(const WebCore::IntRect&) const { } 137 137 virtual void requestGeolocationPermissionForFrame(WebCore::Frame*, WebCore::Geolocation*); 138 138 virtual void cancelGeolocationPermissionRequestForFrame(WebCore::Frame*, WebCore::Geolocation*); -
trunk/Source/WebKit/haiku/ChangeLog
r93303 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * WebCoreSupport/ChromeClientHaiku.cpp: 10 (WebCore::ChromeClientHaiku::scrollRectIntoView): 11 1 12 2011-08-17 Adam Roben <aroben@apple.com> 2 13 -
trunk/Source/WebKit/haiku/WebCoreSupport/ChromeClientHaiku.cpp
r93303 r94080 302 302 } 303 303 304 void ChromeClientHaiku::scrollRectIntoView(const IntRect& , const ScrollView*) const304 void ChromeClientHaiku::scrollRectIntoView(const IntRect&) const 305 305 { 306 306 notImplemented(); -
trunk/Source/WebKit/mac/ChangeLog
r94007 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * WebCoreSupport/WebChromeClient.h: 10 * WebCoreSupport/WebChromeClient.mm: 11 (WebChromeClient::scrollRectIntoView): 12 1 13 2011-08-29 Sheriff Bot <webkit.review.bot@gmail.com> 2 14 -
trunk/Source/WebKit/mac/WebCoreSupport/WebChromeClient.h
r93980 r94080 98 98 virtual PlatformPageClient platformPageClient() const; 99 99 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const; 100 virtual void scrollRectIntoView(const WebCore::IntRect& , const WebCore::ScrollView*) const;100 virtual void scrollRectIntoView(const WebCore::IntRect&) const; 101 101 102 102 virtual void setStatusbarText(const WTF::String&); -
trunk/Source/WebKit/mac/WebCoreSupport/WebChromeClient.mm
r93980 r94080 609 609 } 610 610 611 void WebChromeClient::scrollRectIntoView(const IntRect& r , const ScrollView*) const611 void WebChromeClient::scrollRectIntoView(const IntRect& r) const 612 612 { 613 613 // FIXME: This scrolling behavior should be under the control of the embedding client, -
trunk/Source/WebKit/qt/ChangeLog
r93787 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * WebCoreSupport/ChromeClientQt.h: 10 (WebCore::ChromeClientQt::scrollRectIntoView): 11 1 12 2011-08-25 Ademar de Souza Reis Jr. <ademar.reis@openbossa.org> 2 13 -
trunk/Source/WebKit/qt/WebCoreSupport/ChromeClientQt.h
r93303 r94080 181 181 virtual void setCursorHiddenUntilMouseMoves(bool) { } 182 182 183 virtual void scrollRectIntoView(const IntRect& , const ScrollView*) const { }183 virtual void scrollRectIntoView(const IntRect&) const { } 184 184 185 185 virtual void requestGeolocationPermissionForFrame(Frame*, Geolocation*) { } -
trunk/Source/WebKit/win/ChangeLog
r94049 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * WebCoreSupport/WebChromeClient.h: 10 (WebChromeClient::scrollRectIntoView): 11 1 12 2011-08-29 Ryosuke Niwa <rniwa@webkit.org> 2 13 -
trunk/Source/WebKit/win/WebCoreSupport/WebChromeClient.h
r93303 r94080 154 154 #endif 155 155 156 virtual void scrollRectIntoView(const WebCore::IntRect& , const WebCore::ScrollView*) const {}156 virtual void scrollRectIntoView(const WebCore::IntRect&) const { } 157 157 158 158 // FIXME: Remove once all ports are using client-based geolocation. https://bugs.webkit.org/show_bug.cgi?id=40373 -
trunk/Source/WebKit/wince/ChangeLog
r93303 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * WebCoreSupport/ChromeClientWinCE.h: 10 1 11 2011-08-17 Adam Roben <aroben@apple.com> 2 12 -
trunk/Source/WebKit/wince/WebCoreSupport/ChromeClientWinCE.h
r93303 r94080 102 102 virtual PlatformPageClient platformPageClient() const; 103 103 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const; 104 virtual void scrollRectIntoView(const WebCore::IntRect& , const WebCore::ScrollView*) const; // Currently only Mac has a non empty implementation.104 virtual void scrollRectIntoView(const WebCore::IntRect&) const; // Currently only Mac has a non empty implementation. 105 105 virtual void scrollbarsModeDidChange() const; 106 106 virtual void setCursor(const WebCore::Cursor&); -
trunk/Source/WebKit/wx/ChangeLog
r93303 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * WebKitSupport/ChromeClientWx.h: 10 (WebCore::ChromeClientWx::scrollRectIntoView): 11 1 12 2011-08-17 Adam Roben <aroben@apple.com> 2 13 -
trunk/Source/WebKit/wx/WebKitSupport/ChromeClientWx.h
r93303 r94080 142 142 virtual void setCursorHiddenUntilMouseMoves(bool) { } 143 143 144 virtual void scrollRectIntoView(const IntRect& , const ScrollView*) const {}144 virtual void scrollRectIntoView(const IntRect&) const { } 145 145 146 146 virtual void requestGeolocationPermissionForFrame(Frame*, Geolocation*); -
trunk/Source/WebKit2/ChangeLog
r94051 r94080 1 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com> 2 3 The unused ScrollView* argument can and should be removed from 4 scrollRectIntoView. 5 https://bugs.webkit.org/show_bug.cgi?id=67117 6 7 Reviewed by Darin Adler. 8 9 * WebProcess/WebCoreSupport/WebChromeClient.cpp: 10 (WebKit::WebChromeClient::scrollRectIntoView): 11 * WebProcess/WebCoreSupport/WebChromeClient.h: 12 1 13 2011-08-29 Ryosuke Niwa <rniwa@webkit.org> 2 14 -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp
r93981 r94080 464 464 } 465 465 466 void WebChromeClient::scrollRectIntoView(const IntRect& , const ScrollView*) const466 void WebChromeClient::scrollRectIntoView(const IntRect&) const 467 467 { 468 468 notImplemented(); -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.h
r93980 r94080 120 120 virtual PlatformPageClient platformPageClient() const; 121 121 virtual void contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const; 122 virtual void scrollRectIntoView(const WebCore::IntRect& , const WebCore::ScrollView*) const; // Currently only Mac has a non empty implementation.122 virtual void scrollRectIntoView(const WebCore::IntRect&) const; // Currently only Mac has a non empty implementation. 123 123 // End methods used by HostWindow. 124 124
Note:
See TracChangeset
for help on using the changeset viewer.