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

Unified Diff: ppapi/proxy/message_handler.h

Issue 1014723007: Remove deprecated PPB_Messaging_1_1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove from interfaces_ppb_public_dev_channel.h and histograms.xml Created 5 years, 9 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/message_handler.h
diff --git a/ppapi/proxy/message_handler.h b/ppapi/proxy/message_handler.h
index 1d047bb3d1314bdd98ca0c771172ee5bf1b91c1d..cb3c6ab8257a731a47618d702b7a8165527df736 100644
--- a/ppapi/proxy/message_handler.h
+++ b/ppapi/proxy/message_handler.h
@@ -7,7 +7,6 @@
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
-#include "ppapi/c/dev/ppb_messaging_deprecated.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/ppp_message_handler.h"
#include "ppapi/proxy/ppapi_proxy_export.h"
@@ -48,15 +47,6 @@ class PPAPI_PROXY_EXPORT MessageHandler {
void* user_data,
PP_Resource message_loop,
int32_t* error);
- // Provide temporary backwards compatibility. TODO(dmichael): Remove all
- // references to PPB_Messaging_1_1 and PPP_MessageHandler_0_1.
- // crbug.com/414398
- static scoped_ptr<MessageHandler> CreateDeprecated(
- PP_Instance instance,
- const PPP_MessageHandler_0_1_Deprecated* handler_if,
- void* user_data,
- PP_Resource message_loop,
- int32_t* error);
~MessageHandler();
bool LoopIsValid() const;
@@ -70,15 +60,8 @@ class PPAPI_PROXY_EXPORT MessageHandler {
const PPP_MessageHandler_0_2* handler_if,
void* user_data,
scoped_refptr<MessageLoopResource> message_loop);
- MessageHandler(PP_Instance instance,
- const PPP_MessageHandler_0_1_Deprecated* handler_if,
- void* user_data,
- scoped_refptr<MessageLoopResource> message_loop);
-
-
PP_Instance instance_;
const PPP_MessageHandler_0_2* handler_if_;
- const PPP_MessageHandler_0_1_Deprecated* handler_if_0_1_;
void* user_data_;
scoped_refptr<MessageLoopResource> message_loop_;

Powered by Google App Engine
This is Rietveld 408576698