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

Unified Diff: webkit/glue/websocketstreamhandle_delegate.h

Issue 501125: Revert 34983 - Split more targets from chrome.gyp to add support for building... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 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
« no previous file with comments | « webkit/glue/webkit_glue_dummy.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/websocketstreamhandle_delegate.h
===================================================================
--- webkit/glue/websocketstreamhandle_delegate.h (revision 34989)
+++ webkit/glue/websocketstreamhandle_delegate.h (working copy)
@@ -21,14 +21,14 @@
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*) {}
};
Property changes on: webkit\glue\websocketstreamhandle_delegate.h
___________________________________________________________________
Deleted: svn:eol-style
- LF
« no previous file with comments | « webkit/glue/webkit_glue_dummy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698