summaryrefslogtreecommitdiffstats
path: root/ppapi/tests/testing_instance.h
diff options
context:
space:
mode:
authorjabdelmalek@google.com <jabdelmalek@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-16 16:44:11 +0000
committerjabdelmalek@google.com <jabdelmalek@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-16 16:44:11 +0000
commitbedf8749411d079d41d62263ed434d86dab708bd (patch)
tree586ef192471003427019b65b46a69d0bf4f06653 /ppapi/tests/testing_instance.h
parent7b5635c1046e7d6f41521e8ff77b7ff1152cf48b (diff)
downloadchromium_src-bedf8749411d079d41d62263ed434d86dab708bd.zip
chromium_src-bedf8749411d079d41d62263ed434d86dab708bd.tar.gz
chromium_src-bedf8749411d079d41d62263ed434d86dab708bd.tar.bz2
Use a random port for WebSocket tests. In browser_tests the websocket server might run simultaneously when the sharding supervisor is used. In practice I haven't seen a try run that fails from this because the sharding_supervisor reruns failed tests serially, but probably good to fix this.
BUG=118460 Review URL: https://chromiumcodereview.appspot.com/9693066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127180 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/tests/testing_instance.h')
-rw-r--r--ppapi/tests/testing_instance.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/ppapi/tests/testing_instance.h b/ppapi/tests/testing_instance.h
index 55c7e3d..8dadb20 100644
--- a/ppapi/tests/testing_instance.h
+++ b/ppapi/tests/testing_instance.h
@@ -82,6 +82,8 @@ pp::InstancePrivate {
return protocol_;
}
+ int websocket_port() { return websocket_port_; }
+
// Posts a message to the test page to eval() the script.
void EvalScript(const std::string& script);
@@ -137,6 +139,9 @@ pp::InstancePrivate {
// String representing the protocol. Used for detecting whether we're running
// with http.
std::string protocol_;
+
+ // WebSocket port.
+ int websocket_port_;
};
#endif // PPAPI_TESTS_TESTING_INSTANCE_H_