Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Unified Diff: webkit/glue/webview_impl.h

Issue 196128: Hook up WebViewClient, part 1.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/webview_delegate.h ('k') | webkit/glue/webview_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « webkit/glue/webview_delegate.h ('k') | webkit/glue/webview_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698