Index: content/common/websocket.h |
diff --git a/content/common/websocket.h b/content/common/websocket.h |
index 98d75faf08e2d024da21005cf4d44afa1323c979..f6f8ddbeb904a8668e877e3306ce670ae04f101f 100644 |
--- a/content/common/websocket.h |
+++ b/content/common/websocket.h |
@@ -18,7 +18,8 @@ namespace content { |
enum WebSocketMessageType { |
WEB_SOCKET_MESSAGE_TYPE_CONTINUATION = 0x0, |
WEB_SOCKET_MESSAGE_TYPE_TEXT = 0x1, |
- WEB_SOCKET_MESSAGE_TYPE_BINARY = 0x2 |
+ WEB_SOCKET_MESSAGE_TYPE_BINARY = 0x2, |
+ WEB_SOCKET_MESSAGE_TYPE_LAST = WEB_SOCKET_MESSAGE_TYPE_BINARY |
}; |
// Opening handshake request information which will be shown in the inspector. |