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

Unified Diff: ppapi/proxy/ppb_flash_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/ppb_flash_proxy.h
diff --git a/ppapi/proxy/ppb_flash_proxy.h b/ppapi/proxy/ppb_flash_proxy.h
index 27ec0c2a0cc946785d0f9be73a8871bdcc72340c..faf4222644f0bf653488ae726b3f40e93dc12784 100644
--- a/ppapi/proxy/ppb_flash_proxy.h
+++ b/ppapi/proxy/ppb_flash_proxy.h
@@ -18,7 +18,7 @@
struct PP_FileInfo;
struct PPB_Flash;
-namespace pp {
+namespace ppapi {
namespace proxy {
struct PPBFlash_DrawGlyphs_Params;
@@ -42,12 +42,12 @@ class PPB_Flash_Proxy : public InterfaceProxy {
// Message handlers.
void OnMsgSetInstanceAlwaysOnTop(PP_Instance instance,
PP_Bool on_top);
- void OnMsgDrawGlyphs(const pp::proxy::PPBFlash_DrawGlyphs_Params& params,
+ void OnMsgDrawGlyphs(const PPBFlash_DrawGlyphs_Params& params,
PP_Bool* result);
void OnMsgGetProxyForURL(PP_Instance instance,
const std::string& url,
SerializedVarReturnValue result);
- void OnMsgNavigate(const ppapi::HostResource& request_info,
+ void OnMsgNavigate(const HostResource& request_info,
const std::string& target,
bool from_user_action,
int32_t* result);
@@ -58,6 +58,6 @@ class PPB_Flash_Proxy : public InterfaceProxy {
};
} // namespace proxy
-} // namespace pp
+} // namespace ppapi
#endif // PPAPI_PPB_FLASH_PROXY_H_

Powered by Google App Engine
This is Rietveld 408576698