Changeset 99714 in webkit
- Timestamp:
- Nov 9, 2011, 7:30:38 AM (14 years ago)
- Location:
- trunk/Source/WebKit/chromium
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/chromium/ChangeLog
r99661 r99714 1 2011-11-09 Alexei Svitkine <asvitkine@chromium.org> 2 3 Chromium: Add plumbing to enable dragging dev tools via the empty space on the toolbar. 4 https://bugs.webkit.org/show_bug.cgi?id=71842 5 6 These are the only WebKit-side changes needed. The rest will be done on the Chromium side. 7 8 Chromium bug: http://crbug.com/44350 9 10 Reviewed by Pavel Feldman. 11 12 * public/WebDevToolsFrontendClient.h: 13 (WebKit::WebDevToolsFrontendClient::moveWindowBy): 14 * src/InspectorFrontendClientImpl.cpp: 15 (WebKit::InspectorFrontendClientImpl::moveWindowBy): 16 1 17 2011-11-08 Jay Civelli <jcivelli@chromium.org> 2 18 -
trunk/Source/WebKit/chromium/public/WebDevToolsFrontendClient.h
r95901 r99714 35 35 36 36 class WebString; 37 struct WebFloatPoint; 37 38 struct WebDevToolsMessageData; 38 39 … … 50 51 virtual void requestDockWindow() { } 51 52 virtual void requestUndockWindow() { } 53 virtual void moveWindowBy(const WebFloatPoint&) { } 52 54 virtual void saveAs(const WebString& fileName, const WebString& content) { } 53 55 -
trunk/Source/WebKit/chromium/src/InspectorFrontendClientImpl.cpp
r95901 r99714 41 41 #include "WebDevToolsFrontendClient.h" 42 42 #include "WebDevToolsFrontendImpl.h" 43 #include "WebFloatPoint.h" 43 44 #include "WebString.h" 44 45 … … 82 83 void InspectorFrontendClientImpl::moveWindowBy(float x, float y) 83 84 { 85 m_client->moveWindowBy(WebFloatPoint(x, y)); 84 86 } 85 87
Note:
See TracChangeset
for help on using the changeset viewer.