Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Unified Diff: public/testing/WebTestProxy.h

Issue 23484032: Shadow DOM: Move handleDOMActivateEvent back from InputTypeView to InputType. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/testing/runner/WebTestProxy.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
+ }
};
}
« no previous file with comments | « Source/testing/runner/WebTestProxy.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698