Commit d4e23e4c authored by miket@chromium.org's avatar miket@chromium.org

Fix SocketApiTest.SocketUDPExtension problem in some dbg bots.

BUG=None
TEST=browser_tests --gtest_filter=SocketApiTest.SocketTCPExtension

Review URL: https://chromiumcodereview.appspot.com/10226010

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133972 0039d316-1c4b-4281-b951-d872f2087c98
parent e45912ef
...@@ -74,6 +74,9 @@ ...@@ -74,6 +74,9 @@
callback WriteCallback = void (WriteInfo writeInfo); callback WriteCallback = void (WriteInfo writeInfo);
dictionary RecvFromInfo { dictionary RecvFromInfo {
// The resultCode returned from the underlying read() call.
long resultCode;
// The data received. Warning: will probably become a blob or other // The data received. Warning: will probably become a blob or other
// appropriate binary-friendly type. // appropriate binary-friendly type.
// TODO(miket): [instanceOf=ArrayBuffer]object data; // TODO(miket): [instanceOf=ArrayBuffer]object data;
...@@ -84,7 +87,7 @@ ...@@ -84,7 +87,7 @@
callback RecvFromCallback = void (RecvFromInfo recvFromInfo); callback RecvFromCallback = void (RecvFromInfo recvFromInfo);
callback SendToCallback = void (long bytesWritten); callback SendToCallback = void (WriteInfo writeInfo);
interface Functions { interface Functions {
// Creates a socket of the specified type that will connect to the specified // Creates a socket of the specified type that will connect to the specified
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment