diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 06:58:20 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 06:58:20 +0000 |
commit | c32e27083ff530651d7e03cff7e7bc05bac55359 (patch) | |
tree | ca25d186ec5e30b1c908369fc6d2951bfb2a45f5 /ppapi/proxy | |
parent | bb2999f3c773c9a04201b88b823f93c6de8b117f (diff) | |
download | chromium_src-c32e27083ff530651d7e03cff7e7bc05bac55359.zip chromium_src-c32e27083ff530651d7e03cff7e7bc05bac55359.tar.gz chromium_src-c32e27083ff530651d7e03cff7e7bc05bac55359.tar.bz2 |
Rename WebKit namespace to blink (part 5)
This CL updates all references to the WebKit namespace outside of content,
chrome, and components.
TBR=darin@chromium.org
BUG=295096
Review URL: https://codereview.chromium.org/61553006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233518 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy')
-rw-r--r-- | ppapi/proxy/websocket_resource.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/proxy/websocket_resource.cc b/ppapi/proxy/websocket_resource.cc index 394a2c5..c998cd9 100644 --- a/ppapi/proxy/websocket_resource.cc +++ b/ppapi/proxy/websocket_resource.cc @@ -137,13 +137,13 @@ int32_t WebSocketResource::Close(uint16_t code, // Validate |code| and |reason|. scoped_refptr<StringVar> reason_string_var; std::string reason_string; - WebKit::WebSocket::CloseEventCode event_code = - static_cast<WebKit::WebSocket::CloseEventCode>(code); + blink::WebSocket::CloseEventCode event_code = + static_cast<blink::WebSocket::CloseEventCode>(code); if (code == PP_WEBSOCKETSTATUSCODE_NOT_SPECIFIED) { // PP_WEBSOCKETSTATUSCODE_NOT_SPECIFIED and CloseEventCodeNotSpecified are // assigned to different values. A conversion is needed if // PP_WEBSOCKETSTATUSCODE_NOT_SPECIFIED is specified. - event_code = WebKit::WebSocket::CloseEventCodeNotSpecified; + event_code = blink::WebSocket::CloseEventCodeNotSpecified; } else { if (!(code == PP_WEBSOCKETSTATUSCODE_NORMAL_CLOSURE || (PP_WEBSOCKETSTATUSCODE_USER_REGISTERED_MIN <= code && |