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

Unified Diff: ppapi/proxy/ppp_instance_proxy.h

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/ppp_instance_proxy.h
diff --git a/ppapi/proxy/ppp_instance_proxy.h b/ppapi/proxy/ppp_instance_proxy.h
index 1ff2f8b0ace712cf6873bbb59e284578b21859e0..f9b471c40fa936101f28d10963008d3fe9eca782 100644
--- a/ppapi/proxy/ppp_instance_proxy.h
+++ b/ppapi/proxy/ppp_instance_proxy.h
@@ -18,7 +18,7 @@
struct PP_Rect;
-namespace pp {
+namespace ppapi {
namespace proxy {
class SerializedVarReturnValue;
@@ -29,15 +29,14 @@ class PPP_Instance_Proxy : public InterfaceProxy {
PPP_Instance_Proxy(Dispatcher* dispatcher,
const PPP_Instance_Type* target_interface)
: InterfaceProxy(dispatcher, static_cast<const void*>(target_interface)),
- combined_interface_(
- new ::ppapi::PPP_Instance_Combined(*target_interface)) {
+ combined_interface_(new PPP_Instance_Combined(*target_interface)) {
}
virtual ~PPP_Instance_Proxy();
// Return the info for the 1.0 (latest, canonical) version of the interface.
static const Info* GetInfo1_0();
- ::ppapi::PPP_Instance_Combined* ppp_instance_target() const {
+ PPP_Instance_Combined* ppp_instance_target() const {
return combined_interface_.get();
}
@@ -57,12 +56,12 @@ class PPP_Instance_Proxy : public InterfaceProxy {
PP_Bool fullscreen);
void OnMsgDidChangeFocus(PP_Instance instance, PP_Bool has_focus);
void OnMsgHandleDocumentLoad(PP_Instance instance,
- const ppapi::HostResource& url_loader,
+ const HostResource& url_loader,
PP_Bool* result);
- scoped_ptr< ::ppapi::PPP_Instance_Combined> combined_interface_;
+ scoped_ptr<PPP_Instance_Combined> combined_interface_;
};
} // namespace proxy
-} // namespace pp
+} // namespace ppapi
#endif // PPAPI_PROXY_PPP_INSTANCE_PROXY_H_

Powered by Google App Engine
This is Rietveld 408576698