Title: [125755] trunk/Tools
Revision
125755
Author
[email protected]
Date
2012-08-16 00:54:35 -0700 (Thu, 16 Aug 2012)

Log Message

Add deleteFileSystem support to DumpRenderTree for chromium
https://bugs.webkit.org/show_bug.cgi?id=94071

Patch by Taiju Tsuiki <[email protected]> on 2012-08-16
Reviewed by Kent Tamura.

* DumpRenderTree/chromium/WebViewHost.cpp:
(WebViewHost::deleteFileSystem): Added
* DumpRenderTree/chromium/WebViewHost.h:
(WebViewHost):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (125754 => 125755)


--- trunk/Tools/ChangeLog	2012-08-16 07:34:13 UTC (rev 125754)
+++ trunk/Tools/ChangeLog	2012-08-16 07:54:35 UTC (rev 125755)
@@ -1,3 +1,15 @@
+2012-08-16  Taiju Tsuiki  <[email protected]>
+
+        Add deleteFileSystem support to DumpRenderTree for chromium
+        https://bugs.webkit.org/show_bug.cgi?id=94071
+
+        Reviewed by Kent Tamura.
+
+        * DumpRenderTree/chromium/WebViewHost.cpp:
+        (WebViewHost::deleteFileSystem): Added
+        * DumpRenderTree/chromium/WebViewHost.h:
+        (WebViewHost):
+
 2012-08-15  Ryosuke Niwa  <[email protected]>
 
         Rename LayoutTestController to TestRunner in WebKitTestRunner

Modified: trunk/Tools/DumpRenderTree/chromium/WebViewHost.cpp (125754 => 125755)


--- trunk/Tools/DumpRenderTree/chromium/WebViewHost.cpp	2012-08-16 07:34:13 UTC (rev 125754)
+++ trunk/Tools/DumpRenderTree/chromium/WebViewHost.cpp	2012-08-16 07:54:35 UTC (rev 125755)
@@ -1385,6 +1385,11 @@
     webkit_support::OpenFileSystem(frame, type, size, create, callbacks);
 }
 
+void WebViewHost::deleteFileSystem(WebKit::WebFrame* frame, WebKit::WebFileSystem::Type type, WebKit::WebFileSystemCallbacks* callbacks)
+{
+    webkit_support::DeleteFileSystem(frame, type, callbacks);
+}
+
 bool WebViewHost::willCheckAndDispatchMessageEvent(WebFrame* source, WebSecurityOrigin target, WebDOMMessageEvent event)
 {
     if (m_shell->testRunner()->shouldInterceptPostMessage()) {

Modified: trunk/Tools/DumpRenderTree/chromium/WebViewHost.h (125754 => 125755)


--- trunk/Tools/DumpRenderTree/chromium/WebViewHost.h	2012-08-16 07:34:13 UTC (rev 125754)
+++ trunk/Tools/DumpRenderTree/chromium/WebViewHost.h	2012-08-16 07:54:35 UTC (rev 125755)
@@ -264,6 +264,7 @@
     virtual void didRunInsecureContent(WebKit::WebFrame*, const WebKit::WebSecurityOrigin&, const WebKit::WebURL&);
     virtual void didDetectXSS(WebKit::WebFrame*, const WebKit::WebURL&, bool didBlockEntirePage);
     virtual void openFileSystem(WebKit::WebFrame*, WebKit::WebFileSystem::Type, long long size, bool create, WebKit::WebFileSystemCallbacks*);
+    virtual void deleteFileSystem(WebKit::WebFrame*, WebKit::WebFileSystem::Type, WebKit::WebFileSystemCallbacks*);
     virtual bool willCheckAndDispatchMessageEvent(WebKit::WebFrame* source, WebKit::WebSecurityOrigin target, WebKit::WebDOMMessageEvent);
     virtual void registerIntentService(WebKit::WebFrame*, const WebKit::WebIntentServiceInfo&);
     virtual void dispatchIntent(WebKit::WebFrame*, const WebKit::WebIntentRequest&);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to