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

Unified Diff: third_party/WebKit/public/web/WebPepperSocketClient.h

Issue 1759263002: Rename public/web/WebSocket things to WebPepperSocket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more missed names. Created 4 years, 10 months 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 | « third_party/WebKit/public/web/WebPepperSocket.h ('k') | third_party/WebKit/public/web/WebSocket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « third_party/WebKit/public/web/WebPepperSocket.h ('k') | third_party/WebKit/public/web/WebSocket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698