| 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();
|
|
|