diff options
Diffstat (limited to 'Source/WebKit2/UIProcess/API/C/gtk/WKView.cpp')
-rw-r--r-- | Source/WebKit2/UIProcess/API/C/gtk/WKView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebKit2/UIProcess/API/C/gtk/WKView.cpp b/Source/WebKit2/UIProcess/API/C/gtk/WKView.cpp index aa88151..e3d6c69 100644 --- a/Source/WebKit2/UIProcess/API/C/gtk/WKView.cpp +++ b/Source/WebKit2/UIProcess/API/C/gtk/WKView.cpp @@ -37,9 +37,9 @@ using namespace WebKit; using namespace WebCore; -WKViewRef WKViewCreate(GdkRectangle rect, WKContextRef contextRef, WKPageGroupRef pageGroupRef) +WKViewRef WKViewCreate(WKContextRef contextRef, WKPageGroupRef pageGroupRef) { - RefPtr<WebView> view = WebView::create(rect, toImpl(contextRef), toImpl(pageGroupRef)); + RefPtr<WebView> view = WebView::create(toImpl(contextRef), toImpl(pageGroupRef)); return toAPI(view.release().leakRef()); } |