Searched defs:SocketStreamError (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebSocketStreamError.cpp34 #include "platform/network/SocketStreamError.h"
41 m_private = SocketStreamError::create(code, message);
54 WebSocketStreamError::WebSocketStreamError(PassRefPtr<SocketStreamError> error)
59 WebSocketStreamError& WebSocketStreamError::operator=(PassRefPtr<SocketStreamError> error)
65 WebSocketStreamError::operator PassRefPtr<SocketStreamError>() const
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DSocketStreamHandleClient.h37 class SocketStreamError;
49 virtual void didFailSocketStream(SocketStreamHandle*, const SocketStreamError&) { } argument
H A DSocketStreamError.h42 class PLATFORM_EXPORT SocketStreamError : public RefCounted<SocketStreamError> { class in namespace:blink
44 static PassRefPtr<SocketStreamError> create(int errorCode, const String& errorMessage)
46 return adoptRef(new SocketStreamError(errorCode, errorMessage));
55 static bool compare(const SocketStreamError&, const SocketStreamError&);
58 explicit SocketStreamError(int errorCode, const String& errorMessage) function in class:blink::SocketStreamError
71 inline bool operator==(const SocketStreamError& a, const SocketStreamError& b) { return SocketStreamError
[all...]

Completed in 1873 milliseconds