| Index: webkit/tools/test_shell/test_shell.h
|
| diff --git a/webkit/tools/test_shell/test_shell.h b/webkit/tools/test_shell/test_shell.h
|
| index b35bb592fc2e8fcfb98a53e3cc2d2dc7c2895e37..61b7ff24406150d3bb637d7aaa92f12f33e4338c 100644
|
| --- a/webkit/tools/test_shell/test_shell.h
|
| +++ b/webkit/tools/test_shell/test_shell.h
|
| @@ -67,6 +67,7 @@ class StringPiece;
|
|
|
| namespace WebKit {
|
| class WebDeviceOrientationClientMock;
|
| +class WebGeolocationClientMock;
|
| class WebSpeechInputControllerMock;
|
| class WebSpeechInputListener;
|
| }
|
| @@ -372,6 +373,10 @@ public:
|
| WebKit::WebSpeechInputListener* listener);
|
| WebKit::WebSpeechInputControllerMock* speech_input_controller_mock();
|
|
|
| +#if defined(ENABLE_CLIENT_BASED_GEOLOCATION)
|
| + WebKit::WebGeolocationClientMock* geolocation_client_mock();
|
| +#endif
|
| +
|
| protected:
|
| void CreateDevToolsClient(TestShellDevToolsAgent* agent);
|
| bool Initialize(const GURL& starting_url);
|
| @@ -456,6 +461,9 @@ private:
|
| scoped_ptr<WebKit::WebSpeechInputControllerMock>
|
| speech_input_controller_mock_;
|
|
|
| +#if defined(ENABLE_CLIENT_BASED_GEOLOCATION)
|
| + scoped_ptr<WebKit::WebGeolocationClientMock> geolocation_client_mock_;
|
| +#endif
|
| const TestParams* test_params_;
|
|
|
| // True while a test is preparing to run
|
|
|