| Index: public/testing/WebTestProxy.h
|
| diff --git a/public/testing/WebTestProxy.h b/public/testing/WebTestProxy.h
|
| index f05e2f7ff30f76bdd614e51e3dd62efcb3be9aa4..ba1de2e67d0aadbbd92b105e38155c2ce963e476 100644
|
| --- a/public/testing/WebTestProxy.h
|
| +++ b/public/testing/WebTestProxy.h
|
| @@ -61,6 +61,7 @@ class WebDataSource;
|
| class WebDeviceOrientationClient;
|
| class WebDeviceOrientationClientMock;
|
| class WebDragData;
|
| +class WebFileChooserCompletion;
|
| class WebFrame;
|
| class WebGeolocationClient;
|
| class WebGeolocationClientMock;
|
| @@ -87,6 +88,7 @@ class WebView;
|
| class WebWidget;
|
| struct WebConsoleMessage;
|
| struct WebContextMenuData;
|
| +struct WebFileChooserParams;
|
| struct WebPluginParams;
|
| struct WebPoint;
|
| struct WebSize;
|
| @@ -119,6 +121,7 @@ public:
|
| WebKit::WebSpellCheckClient *spellCheckClient() const;
|
| WebKit::WebValidationMessageClient* validationMessageClient();
|
| WebKit::WebColorChooser* createColorChooser(WebKit::WebColorChooserClient*, const WebKit::WebColor&);
|
| + bool runFileChooser(const WebKit::WebFileChooserParams&, WebKit::WebFileChooserCompletion*);
|
|
|
| std::string captureTree(bool debugRenderTree);
|
| SkCanvas* capturePixels();
|
| @@ -587,6 +590,10 @@ public:
|
| {
|
| return WebTestProxyBase::createColorChooser(client, color);
|
| }
|
| + virtual bool runFileChooser(const WebKit::WebFileChooserParams& params, WebKit::WebFileChooserCompletion* completion)
|
| + {
|
| + return WebTestProxyBase::runFileChooser(params, completion);
|
| + }
|
| };
|
|
|
| }
|
|
|