Web Inspector: [chromium] add provisional save method into the frontend client.
authorpfeldman@chromium.org <pfeldman@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 3 Apr 2012 14:29:32 +0000 (14:29 +0000)
committerpfeldman@chromium.org <pfeldman@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 3 Apr 2012 14:29:32 +0000 (14:29 +0000)
https://bugs.webkit.org/show_bug.cgi?id=83022

Reviewed by Yury Semikhatsky.

* public/WebDevToolsFrontendClient.h:
(WebKit::WebDevToolsFrontendClient::save):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@113032 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebKit/chromium/ChangeLog
Source/WebKit/chromium/public/WebDevToolsFrontendClient.h

index cdce2a6..f98f499 100644 (file)
@@ -1,3 +1,13 @@
+2012-04-03  Pavel Feldman  <pfeldman@chromium.org>
+
+        Web Inspector: [chromium] add provisional save method into the frontend client.
+        https://bugs.webkit.org/show_bug.cgi?id=83022
+
+        Reviewed by Yury Semikhatsky.
+
+        * public/WebDevToolsFrontendClient.h:
+        (WebKit::WebDevToolsFrontendClient::save):
+
 2012-04-03  Bill Budge  <bbudge@chromium.org>
 
         WebViewImpl doesn't notify the page that the user has canceled fullscreen.
index c09f514..eb92349 100644 (file)
@@ -51,6 +51,7 @@ public:
     virtual void moveWindowBy(const WebFloatPoint&) { }
     virtual void openInNewTab(const WebString& side) { }
     virtual void saveAs(const WebString& fileName, const WebString& content) { }
+    virtual void save(const WebString& url, const WebString& initialPath, const WebString& content, bool saveAs) { }
 
 protected:
     virtual ~WebDevToolsFrontendClient() {}