Index: Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h |
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h b/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h |
index 4f617ecfeb1c606f2c9909dc3513ba4b7adb62e1..8ad9aee956a4464fa38413ca8797a0ca7c761b81 100644 |
--- a/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h |
+++ b/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h |
@@ -52,6 +52,8 @@ |
namespace WebKit { |
class WebAccessibilityObject; |
class WebCachedURLRequest; |
+class WebColorChooser; |
+class WebColorChooserClient; |
class WebDataSource; |
class WebDeviceOrientationClient; |
class WebDeviceOrientationClientMock; |
@@ -105,6 +107,7 @@ public: |
void reset(); |
WebKit::WebSpellCheckClient *spellCheckClient() const; |
+ WebKit::WebColorChooser* createColorChooser(WebKit::WebColorChooserClient*); |
std::string captureTree(bool debugRenderTree); |
SkCanvas* capturePixels(); |
@@ -114,6 +117,10 @@ public: |
// FIXME: Make this private again. |
void scheduleComposite(); |
+ void didOpenChooser(); |
+ void didCloseChooser(); |
+ bool isChooserShown(); |
+ |
#if WEBTESTRUNNER_IMPLEMENTATION |
void display(); |
void displayInvalidatedRegion(); |
@@ -223,6 +230,7 @@ private: |
std::map<unsigned, WebKit::WebURLRequest> m_requestMap; |
bool m_logConsoleOutput; |
+ int m_chooserCount; |
std::auto_ptr<WebKit::WebGeolocationClientMock> m_geolocationClient; |
std::auto_ptr<WebKit::WebDeviceOrientationClientMock> m_deviceOrientationClient; |