| Index: third_party/WebKit/public/web/WebPepperSocketClient.h
|
| diff --git a/third_party/WebKit/public/web/WebSocketClient.h b/third_party/WebKit/public/web/WebPepperSocketClient.h
|
| similarity index 93%
|
| rename from third_party/WebKit/public/web/WebSocketClient.h
|
| rename to third_party/WebKit/public/web/WebPepperSocketClient.h
|
| index 666a018cd370e48f8aed0e9dd8b44b7a28b32af4..8424987ae4e8343e9dbb0de5bcbfe1e38b01d8d5 100644
|
| --- a/third_party/WebKit/public/web/WebSocketClient.h
|
| +++ b/third_party/WebKit/public/web/WebPepperSocketClient.h
|
| @@ -28,8 +28,8 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef WebSocketClient_h
|
| -#define WebSocketClient_h
|
| +#ifndef WebPepperSocketClient_h
|
| +#define WebPepperSocketClient_h
|
|
|
| #include "../platform/WebCommon.h"
|
|
|
| @@ -38,14 +38,14 @@ namespace blink {
|
| class WebArrayBuffer;
|
| class WebString;
|
|
|
| -class WebSocketClient {
|
| +class WebPepperSocketClient {
|
| public:
|
| enum ClosingHandshakeCompletionStatus {
|
| ClosingHandshakeIncomplete,
|
| ClosingHandshakeComplete
|
| };
|
|
|
| - virtual ~WebSocketClient() { }
|
| + virtual ~WebPepperSocketClient() { }
|
| virtual void didConnect(const WebString& subprotocol, const WebString& extensions) { }
|
| virtual void didReceiveMessage(const WebString& message) { }
|
| virtual void didReceiveArrayBuffer(const WebArrayBuffer& arrayBuffer) { }
|
| @@ -62,4 +62,4 @@ public:
|
|
|
| } // namespace blink
|
|
|
| -#endif // WebSocketClient_h
|
| +#endif // WebPepperSocketClient_h
|
|
|