Index: content/public/renderer/render_frame.h |
diff --git a/content/public/renderer/render_frame.h b/content/public/renderer/render_frame.h |
index 81bb4c3abae726b5866ead7dcde11832b5cb60fd..2eaba9c7533dc0353bb3540a2a296fa32a06c05a 100644 |
--- a/content/public/renderer/render_frame.h |
+++ b/content/public/renderer/render_frame.h |
@@ -17,6 +17,7 @@ class WebLocalFrame; |
class WebNode; |
class WebPlugin; |
class WebURLRequest; |
+class WebURLResponse; |
struct WebPluginParams; |
} |
@@ -91,6 +92,8 @@ class CONTENT_EXPORT RenderFrame : public IPC::Listener, |
// Returns the ServiceRegistry for this frame. |
virtual ServiceRegistry* GetServiceRegistry() = 0; |
+ virtual bool IsFTPDirectoryListing(const blink::WebURLResponse& response) = 0; |
jam
2014/07/21 17:16:10
no need to pass in response, you got this in chrom
tfarina
2014/07/22 01:03:02
Done.
|
+ |
protected: |
virtual ~RenderFrame() {} |