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

Side by Side Diff: third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.h

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 26 matching lines...) Expand all
37 #include "core/fileapi/Blob.h" 37 #include "core/fileapi/Blob.h"
38 #include "core/fileapi/FileError.h" 38 #include "core/fileapi/FileError.h"
39 #include "core/loader/ThreadableLoadingContext.h" 39 #include "core/loader/ThreadableLoadingContext.h"
40 #include "modules/ModulesExport.h" 40 #include "modules/ModulesExport.h"
41 #include "modules/websockets/WebSocketChannel.h" 41 #include "modules/websockets/WebSocketChannel.h"
42 #include "modules/websockets/WebSocketHandle.h" 42 #include "modules/websockets/WebSocketHandle.h"
43 #include "modules/websockets/WebSocketHandleClient.h" 43 #include "modules/websockets/WebSocketHandleClient.h"
44 #include "platform/WebFrameScheduler.h" 44 #include "platform/WebFrameScheduler.h"
45 #include "platform/heap/Handle.h" 45 #include "platform/heap/Handle.h"
46 #include "platform/weborigin/KURL.h" 46 #include "platform/weborigin/KURL.h"
47 #include "wtf/Deque.h" 47 #include "platform/wtf/Deque.h"
48 #include "wtf/PassRefPtr.h" 48 #include "platform/wtf/PassRefPtr.h"
49 #include "wtf/RefPtr.h" 49 #include "platform/wtf/RefPtr.h"
50 #include "wtf/Vector.h" 50 #include "platform/wtf/Vector.h"
51 #include "wtf/text/CString.h" 51 #include "platform/wtf/text/CString.h"
52 #include "wtf/text/WTFString.h" 52 #include "platform/wtf/text/WTFString.h"
53 53
54 namespace blink { 54 namespace blink {
55 55
56 class ThreadableLoadingContext; 56 class ThreadableLoadingContext;
57 class WebSocketHandshakeRequest; 57 class WebSocketHandshakeRequest;
58 58
59 // This class is a WebSocketChannel subclass that works with a Document in a 59 // This class is a WebSocketChannel subclass that works with a Document in a
60 // DOMWindow (i.e. works in the main thread). 60 // DOMWindow (i.e. works in the main thread).
61 class MODULES_EXPORT DocumentWebSocketChannel final 61 class MODULES_EXPORT DocumentWebSocketChannel final
62 : public WebSocketChannel, 62 : public WebSocketChannel,
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 RefPtr<WebSocketHandshakeRequest> handshake_request_; 200 RefPtr<WebSocketHandshakeRequest> handshake_request_;
201 201
202 static const uint64_t kReceivedDataSizeForFlowControlHighWaterMark = 1 << 15; 202 static const uint64_t kReceivedDataSizeForFlowControlHighWaterMark = 1 << 15;
203 }; 203 };
204 204
205 std::ostream& operator<<(std::ostream&, const DocumentWebSocketChannel*); 205 std::ostream& operator<<(std::ostream&, const DocumentWebSocketChannel*);
206 206
207 } // namespace blink 207 } // namespace blink
208 208
209 #endif // DocumentWebSocketChannel_h 209 #endif // DocumentWebSocketChannel_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698