diff options
author | gregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-23 21:20:16 +0000 |
---|---|---|
committer | gregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-23 21:20:16 +0000 |
commit | f645f6e2a0cdc85f04fdfb4cd7a6d462027deb71 (patch) | |
tree | eb4febae02996866c0a4512370bfb440663ac6b8 /webkit/glue/websocketstreamhandle_delegate.h | |
parent | 6fb8d07549e52937a293f8300353583d92975e7e (diff) | |
download | chromium_src-f645f6e2a0cdc85f04fdfb4cd7a6d462027deb71.zip chromium_src-f645f6e2a0cdc85f04fdfb4cd7a6d462027deb71.tar.gz chromium_src-f645f6e2a0cdc85f04fdfb4cd7a6d462027deb71.tar.bz2 |
Revert 35230 - Split more targets from chrome.gyp to add support for building Native Client for 64bit Windows.
This CL is required for supporting Native Client on 64bit Windows. On Win64 we will use a 64bit executable to load NaCl modules. Since we have only one version of Chrome on Windows, this executable has to be built together with 32bit Chrome binaries.
For the targets that are required for both 32bit and 64bit builds, this CL moves the shared parts of the target definitions into targetspecific gypi files (such as base.gypi). New 64bit only targets are added. Since we would like to port as few code as possible at this point, some 64bit targets include less source files or less dependencies than the original 32bit targets. These targets will have nacl_win64 in their name to emphasize that they should be used for NaCl only. Some 64bit targets are identical to the 32bit targets in everything except for the target platform these will have only win64 in their name.
TEST=none
BUG=28176
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=34983
Review URL: http://codereview.chromium.org/384068
TBR=gregoryd@google.com
Review URL: http://codereview.chromium.org/516013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35232 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/websocketstreamhandle_delegate.h')
-rw-r--r-- | webkit/glue/websocketstreamhandle_delegate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/websocketstreamhandle_delegate.h b/webkit/glue/websocketstreamhandle_delegate.h index c541852..2148699 100644 --- a/webkit/glue/websocketstreamhandle_delegate.h +++ b/webkit/glue/websocketstreamhandle_delegate.h @@ -21,14 +21,14 @@ class WebSocketStreamHandleDelegate { virtual void WillOpenStream(WebKit::WebSocketStreamHandle* handle, const GURL& url) {} virtual void WillSendData(WebKit::WebSocketStreamHandle* handle, - const char* data, size_t len) {} + const char* data, int len) {} virtual void DidOpenStream(WebKit::WebSocketStreamHandle* handle, int max_amount_send_allowed) {} virtual void DidSendData(WebKit::WebSocketStreamHandle* handle, int amount_sent) {} virtual void DidReceiveData(WebKit::WebSocketStreamHandle* handle, - const char* data, size_t len) {} + const char* data, int len) {} virtual void DidClose(WebKit::WebSocketStreamHandle*) {} }; |