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

Unified Diff: third_party/WebKit/Source/web/WebPepperSocket.cpp

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
Index: third_party/WebKit/Source/web/WebPepperSocket.cpp
diff --git a/third_party/WebKit/Source/web/WebSocket.cpp b/third_party/WebKit/Source/web/WebPepperSocket.cpp
similarity index 86%
rename from third_party/WebKit/Source/web/WebSocket.cpp
rename to third_party/WebKit/Source/web/WebPepperSocket.cpp
index 1d97723e192a92326e57cf1abc5be949d99560af..fccbba09e6d6979d0d19d6d261b035b5b95981c2 100644
--- a/third_party/WebKit/Source/web/WebSocket.cpp
+++ b/third_party/WebKit/Source/web/WebPepperSocket.cpp
@@ -28,18 +28,18 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "public/web/WebSocket.h"
+#include "public/web/WebPepperSocket.h"
-#include "web/WebSocketImpl.h"
+#include "web/WebPepperSocketImpl.h"
namespace blink {
-WebSocket* WebSocket::create(const WebDocument& document, WebSocketClient* client)
+WebPepperSocket* WebPepperSocket::create(const WebDocument& document, WebPepperSocketClient* client)
{
if (!client)
return 0;
- OwnPtr<WebSocketImpl> websocket = adoptPtr(new WebSocketImpl(document, client));
+ OwnPtr<WebPepperSocketImpl> websocket = adoptPtr(new WebPepperSocketImpl(document, client));
if (websocket && websocket->isNull())
return 0;
return websocket.leakPtr();
« no previous file with comments | « content/renderer/pepper/pepper_websocket_host.cc ('k') | third_party/WebKit/Source/web/WebPepperSocketChannelClientProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698