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

Unified Diff: third_party/WebKit/public/web/WebPepperSocket.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/blink_headers.gypi ('k') | third_party/WebKit/public/web/WebPepperSocketClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebPepperSocket.h
diff --git a/third_party/WebKit/public/web/WebSocket.h b/third_party/WebKit/public/web/WebPepperSocket.h
similarity index 93%
rename from third_party/WebKit/public/web/WebSocket.h
rename to third_party/WebKit/public/web/WebPepperSocket.h
index e816fdeee1fc85fe8dea851c3319d2cc6cdec2d6..59ac53f253852a1cafc0857b93f64068ae8b7999 100644
--- a/third_party/WebKit/public/web/WebSocket.h
+++ b/third_party/WebKit/public/web/WebPepperSocket.h
@@ -28,8 +28,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef WebSocket_h
-#define WebSocket_h
+#ifndef WebPepperSocket_h
+#define WebPepperSocket_h
#include "../platform/WebCommon.h"
#include "../platform/WebPrivatePtr.h"
@@ -39,10 +39,10 @@ namespace blink {
class WebArrayBuffer;
class WebDocument;
+class WebPepperSocketClient;
class WebURL;
-class WebSocketClient;
-class WebSocket {
+class WebPepperSocket {
public:
enum CloseEventCode {
CloseEventCodeNotSpecified = -1,
@@ -68,8 +68,8 @@ public:
BinaryTypeArrayBuffer = 1
};
- BLINK_EXPORT static WebSocket* create(const WebDocument&, WebSocketClient*);
- virtual ~WebSocket() { }
+ BLINK_EXPORT static WebPepperSocket* create(const WebDocument&, WebPepperSocketClient*);
+ virtual ~WebPepperSocket() { }
// These functions come from binaryType attribute of the WebSocket API
// specification. It specifies binary object type for receiving binary
@@ -94,4 +94,4 @@ public:
} // namespace blink
-#endif // WebSocket_h
+#endif // WebPepperSocket_h
« no previous file with comments | « third_party/WebKit/public/blink_headers.gypi ('k') | third_party/WebKit/public/web/WebPepperSocketClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698