summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy
diff options
context:
space:
mode:
authorteravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-25 22:39:15 +0000
committerteravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-25 22:39:15 +0000
commit7310b16441368a374999e31dbe0b583836c6fe9d (patch)
tree3ccf19891ef60d2363c17c501ae6095bd7ccd428 /ppapi/proxy
parent9430533e5fda7d6a40d37f848eab416433fbf22a (diff)
downloadchromium_src-7310b16441368a374999e31dbe0b583836c6fe9d.zip
chromium_src-7310b16441368a374999e31dbe0b583836c6fe9d.tar.gz
chromium_src-7310b16441368a374999e31dbe0b583836c6fe9d.tar.bz2
Pepper: Move PPB_Testing_Dev to Private.
PPB_Testing_Dev will never move to stable, and makes sense more as a private than a trusted API. BUG= Review URL: https://codereview.chromium.org/62703005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237161 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy')
-rw-r--r--ppapi/proxy/interface_list.cc2
-rw-r--r--ppapi/proxy/ppb_testing_proxy.cc10
-rw-r--r--ppapi/proxy/ppb_testing_proxy.h4
3 files changed, 8 insertions, 8 deletions
diff --git a/ppapi/proxy/interface_list.cc b/ppapi/proxy/interface_list.cc
index 99903a3..f609855 100644
--- a/ppapi/proxy/interface_list.cc
+++ b/ppapi/proxy/interface_list.cc
@@ -21,7 +21,6 @@
#include "ppapi/c/dev/ppb_opengles2ext_dev.h"
#include "ppapi/c/dev/ppb_printing_dev.h"
#include "ppapi/c/dev/ppb_resource_array_dev.h"
-#include "ppapi/c/dev/ppb_testing_dev.h"
#include "ppapi/c/dev/ppb_text_input_dev.h"
#include "ppapi/c/dev/ppb_trace_event_dev.h"
#include "ppapi/c/dev/ppb_truetype_font_dev.h"
@@ -89,6 +88,7 @@
#include "ppapi/c/private/ppb_talk_private.h"
#include "ppapi/c/private/ppb_tcp_server_socket_private.h"
#include "ppapi/c/private/ppb_tcp_socket_private.h"
+#include "ppapi/c/private/ppb_testing_private.h"
#include "ppapi/c/private/ppb_udp_socket_private.h"
#include "ppapi/c/private/ppb_video_destination_private.h"
#include "ppapi/c/private/ppb_video_source_private.h"
diff --git a/ppapi/proxy/ppb_testing_proxy.cc b/ppapi/proxy/ppb_testing_proxy.cc
index f80e60c..e4602e8 100644
--- a/ppapi/proxy/ppb_testing_proxy.cc
+++ b/ppapi/proxy/ppb_testing_proxy.cc
@@ -5,7 +5,7 @@
#include "ppapi/proxy/ppb_testing_proxy.h"
#include "base/message_loop/message_loop.h"
-#include "ppapi/c/dev/ppb_testing_dev.h"
+#include "ppapi/c/private/ppb_testing_private.h"
#include "ppapi/proxy/enter_proxy.h"
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/ppapi_messages.h"
@@ -127,7 +127,7 @@ void SetMinimumArrayBufferSizeForShmem(PP_Instance instance,
API_ID_PPB_TESTING, threshold));
}
-const PPB_Testing_Dev testing_interface = {
+const PPB_Testing_Private testing_interface = {
&ReadImageData,
&RunMessageLoop,
&QuitMessageLoop,
@@ -149,8 +149,8 @@ PPB_Testing_Proxy::PPB_Testing_Proxy(Dispatcher* dispatcher)
: InterfaceProxy(dispatcher),
ppb_testing_impl_(NULL) {
if (!dispatcher->IsPlugin()) {
- ppb_testing_impl_ = static_cast<const PPB_Testing_Dev*>(
- dispatcher->local_get_interface()(PPB_TESTING_DEV_INTERFACE));
+ ppb_testing_impl_ = static_cast<const PPB_Testing_Private*>(
+ dispatcher->local_get_interface()(PPB_TESTING_PRIVATE_INTERFACE));
}
}
@@ -161,7 +161,7 @@ PPB_Testing_Proxy::~PPB_Testing_Proxy() {
const InterfaceProxy::Info* PPB_Testing_Proxy::GetInfo() {
static const Info info = {
&testing_interface,
- PPB_TESTING_DEV_INTERFACE,
+ PPB_TESTING_PRIVATE_INTERFACE,
API_ID_PPB_TESTING,
false,
&CreateTestingProxy,
diff --git a/ppapi/proxy/ppb_testing_proxy.h b/ppapi/proxy/ppb_testing_proxy.h
index 61af47f..bee539a 100644
--- a/ppapi/proxy/ppb_testing_proxy.h
+++ b/ppapi/proxy/ppb_testing_proxy.h
@@ -8,7 +8,7 @@
#include "base/basictypes.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_resource.h"
-#include "ppapi/c/dev/ppb_testing_dev.h"
+#include "ppapi/c/private/ppb_testing_private.h"
#include "ppapi/proxy/interface_proxy.h"
#include "ppapi/shared_impl/host_resource.h"
@@ -46,7 +46,7 @@ class PPB_Testing_Proxy : public InterfaceProxy {
// When this proxy is in the host side, this value caches the interface
// pointer so we don't have to retrieve it from the dispatcher each time.
// In the plugin, this value is always NULL.
- const PPB_Testing_Dev* ppb_testing_impl_;
+ const PPB_Testing_Private* ppb_testing_impl_;
DISALLOW_COPY_AND_ASSIGN(PPB_Testing_Proxy);
};