| Index: webkit/glue/webview_impl.h
|
| ===================================================================
|
| --- webkit/glue/webview_impl.h (revision 26230)
|
| +++ webkit/glue/webview_impl.h (working copy)
|
| @@ -167,6 +167,11 @@
|
|
|
| static WebViewImpl* FromPage(WebCore::Page* page);
|
|
|
| + WebKit::WebViewClient* client() {
|
| + return delegate_;
|
| + }
|
| +
|
| + // TODO(darin): Remove this method in favor of client().
|
| WebViewDelegate* delegate() {
|
| return delegate_;
|
| }
|
| @@ -228,7 +233,8 @@
|
| }
|
|
|
| // Start a system drag and drop operation.
|
| - void StartDragging(WebKit::WebPoint event_pos,
|
| + void StartDragging(
|
| + const WebKit::WebPoint& event_pos,
|
| const WebKit::WebDragData& drag_data,
|
| WebKit::WebDragOperationsMask drag_source_operation_mask);
|
|
|
|
|