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

Unified Diff: webkit/tools/test_shell/test_shell.h

Issue 5612005: Client-based geolocation support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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
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..0f2c90eeb7c94afa12a565e76d0654c63fa918a2 100644
--- a/webkit/tools/test_shell/test_shell.h
+++ b/webkit/tools/test_shell/test_shell.h
@@ -69,6 +69,7 @@ namespace WebKit {
class WebDeviceOrientationClientMock;
class WebSpeechInputControllerMock;
class WebSpeechInputListener;
+class WebGeolocationClientMock;
bulach 2010/12/07 11:18:42 sort order
}
class TestShell : public base::SupportsWeakPtr<TestShell> {
@@ -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

Powered by Google App Engine
This is Rietveld 408576698