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

Unified Diff: ppapi/proxy/ppb_url_loader_proxy.cc

Issue 7655002: Convert the pp::proxy namespace to the ppapi::proxy namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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: ppapi/proxy/ppb_url_loader_proxy.cc
diff --git a/ppapi/proxy/ppb_url_loader_proxy.cc b/ppapi/proxy/ppb_url_loader_proxy.cc
index 5528a522ae44270c1c30ac89700cdd7d87684f57..3f6cd1059fe21be22497fbe4a1a9d446ce0f3167 100644
--- a/ppapi/proxy/ppb_url_loader_proxy.cc
+++ b/ppapi/proxy/ppb_url_loader_proxy.cc
@@ -31,14 +31,12 @@
#include <sys/shm.h>
#endif
-using ppapi::HostResource;
-using ppapi::Resource;
using ppapi::thunk::EnterFunctionNoLock;
using ppapi::thunk::EnterResourceNoLock;
using ppapi::thunk::PPB_URLLoader_API;
using ppapi::thunk::ResourceCreationAPI;
-namespace pp {
+namespace ppapi {
namespace proxy {
namespace {
@@ -368,7 +366,7 @@ PP_Resource PPB_URLLoader_Proxy::TrackPluginResource(
// static
const InterfaceProxy::Info* PPB_URLLoader_Proxy::GetInfo() {
static const Info info = {
- ::ppapi::thunk::GetPPB_URLLoader_Thunk(),
+ thunk::GetPPB_URLLoader_Thunk(),
PPB_URLLOADER_INTERFACE,
INTERFACE_ID_PPB_URL_LOADER,
false,
@@ -380,7 +378,7 @@ const InterfaceProxy::Info* PPB_URLLoader_Proxy::GetInfo() {
// static
const InterfaceProxy::Info* PPB_URLLoader_Proxy::GetTrustedInfo() {
static const Info info = {
- ::ppapi::thunk::GetPPB_URLLoaderTrusted_Thunk(),
+ thunk::GetPPB_URLLoaderTrusted_Thunk(),
PPB_URLLOADERTRUSTED_INTERFACE,
INTERFACE_ID_NONE, // URL_LOADER is the canonical one.
false,
@@ -587,4 +585,4 @@ void PPB_URLLoader_Proxy::OnReadCallback(int32_t result,
}
} // namespace proxy
-} // namespace pp
+} // namespace ppapi

Powered by Google App Engine
This is Rietveld 408576698