summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-02 06:04:50 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-02 06:04:50 +0000
commit0cc8512f2022e0bfdba77e12f02cd4fb885027b3 (patch)
tree6148f0c26106a94b2c088b4abf7b5ddff05ced44 /remoting
parent85c79b57fcff4dc4c80c8d64fd62aac30cbc968a (diff)
downloadchromium_src-0cc8512f2022e0bfdba77e12f02cd4fb885027b3.zip
chromium_src-0cc8512f2022e0bfdba77e12f02cd4fb885027b3.tar.gz
chromium_src-0cc8512f2022e0bfdba77e12f02cd4fb885027b3.tar.bz2
Revert PPAPI change.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64719 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/DEPS1
-rw-r--r--remoting/client/plugin/chromoting_instance.cc6
-rw-r--r--remoting/client/plugin/chromoting_instance.h10
-rw-r--r--remoting/client/plugin/chromoting_scriptable_object.cc3
-rw-r--r--remoting/client/plugin/chromoting_scriptable_object.h4
-rw-r--r--remoting/client/plugin/pepper_entrypoints.cc12
-rw-r--r--remoting/client/plugin/pepper_entrypoints.h4
-rw-r--r--remoting/client/plugin/pepper_input_handler.cc2
-rw-r--r--remoting/client/plugin/pepper_util.cc4
-rw-r--r--remoting/client/plugin/pepper_util.h2
-rw-r--r--remoting/client/plugin/pepper_view.cc8
-rw-r--r--remoting/client/plugin/pepper_view.h2
-rw-r--r--remoting/remoting.gyp2
13 files changed, 30 insertions, 30 deletions
diff --git a/remoting/DEPS b/remoting/DEPS
index fbdd04d..d929d84 100644
--- a/remoting/DEPS
+++ b/remoting/DEPS
@@ -5,7 +5,6 @@ include_rules = [
"+media/base",
"+net",
"+jingle",
- "+ppapi",
"+talk",
"+third_party/npapi"
"+third_party/protobuf2",
diff --git a/remoting/client/plugin/chromoting_instance.cc b/remoting/client/plugin/chromoting_instance.cc
index 67979c0..3a5f2fa 100644
--- a/remoting/client/plugin/chromoting_instance.cc
+++ b/remoting/client/plugin/chromoting_instance.cc
@@ -10,9 +10,6 @@
#include "base/message_loop.h"
#include "base/string_util.h"
#include "base/thread.h"
-#include "ppapi/c/pp_input_event.h"
-#include "ppapi/cpp/completion_callback.h"
-#include "ppapi/cpp/rect.h"
#include "remoting/client/client_config.h"
#include "remoting/client/client_util.h"
#include "remoting/client/chromoting_client.h"
@@ -23,6 +20,9 @@
#include "remoting/client/plugin/pepper_input_handler.h"
#include "remoting/client/plugin/pepper_view.h"
#include "remoting/jingle_glue/jingle_thread.h"
+#include "third_party/ppapi/c/pp_input_event.h"
+#include "third_party/ppapi/cpp/completion_callback.h"
+#include "third_party/ppapi/cpp/rect.h"
namespace remoting {
diff --git a/remoting/client/plugin/chromoting_instance.h b/remoting/client/plugin/chromoting_instance.h
index f706478..df1db9f 100644
--- a/remoting/client/plugin/chromoting_instance.h
+++ b/remoting/client/plugin/chromoting_instance.h
@@ -12,14 +12,14 @@
#include "base/gtest_prod_util.h"
#include "base/scoped_ptr.h"
-#include "ppapi/c/pp_instance.h"
-#include "ppapi/c/pp_rect.h"
-#include "ppapi/c/pp_resource.h"
-#include "ppapi/cpp/instance.h"
-#include "ppapi/cpp/var.h"
#include "remoting/client/client_context.h"
#include "remoting/client/host_connection.h"
#include "remoting/client/plugin/chromoting_scriptable_object.h"
+#include "third_party/ppapi/c/pp_instance.h"
+#include "third_party/ppapi/c/pp_rect.h"
+#include "third_party/ppapi/c/pp_resource.h"
+#include "third_party/ppapi/cpp/instance.h"
+#include "third_party/ppapi/cpp/var.h"
class MessageLoop;
struct PP_InputEvent;
diff --git a/remoting/client/plugin/chromoting_scriptable_object.cc b/remoting/client/plugin/chromoting_scriptable_object.cc
index 4b19c3c..1fc04e4 100644
--- a/remoting/client/plugin/chromoting_scriptable_object.cc
+++ b/remoting/client/plugin/chromoting_scriptable_object.cc
@@ -4,10 +4,11 @@
#include "remoting/client/plugin/chromoting_scriptable_object.h"
-#include "ppapi/cpp/var.h"
#include "remoting/client/client_config.h"
#include "remoting/client/plugin/chromoting_instance.h"
+#include "third_party/ppapi/cpp/var.h"
+
using pp::Var;
namespace remoting {
diff --git a/remoting/client/plugin/chromoting_scriptable_object.h b/remoting/client/plugin/chromoting_scriptable_object.h
index 6940721..c317f57 100644
--- a/remoting/client/plugin/chromoting_scriptable_object.h
+++ b/remoting/client/plugin/chromoting_scriptable_object.h
@@ -41,8 +41,8 @@
#include <string>
#include <vector>
-#include "ppapi/cpp/dev/scriptable_object_deprecated.h"
-#include "ppapi/cpp/var.h"
+#include "third_party/ppapi/cpp/dev/scriptable_object_deprecated.h"
+#include "third_party/ppapi/cpp/var.h"
namespace remoting {
diff --git a/remoting/client/plugin/pepper_entrypoints.cc b/remoting/client/plugin/pepper_entrypoints.cc
index a5e6142..77307b3 100644
--- a/remoting/client/plugin/pepper_entrypoints.cc
+++ b/remoting/client/plugin/pepper_entrypoints.cc
@@ -5,13 +5,13 @@
#include "remoting/client/plugin/pepper_entrypoints.h"
#include "base/message_loop.h"
-#include "ppapi/c/pp_errors.h"
-#include "ppapi/c/pp_instance.h"
-#include "ppapi/c/pp_module.h"
-#include "ppapi/c/ppb_instance.h"
-#include "ppapi/cpp/instance.h"
-#include "ppapi/cpp/module.h"
#include "remoting/client/plugin/chromoting_instance.h"
+#include "third_party/ppapi/c/pp_errors.h"
+#include "third_party/ppapi/c/pp_instance.h"
+#include "third_party/ppapi/c/pp_module.h"
+#include "third_party/ppapi/c/ppb_instance.h"
+#include "third_party/ppapi/cpp/instance.h"
+#include "third_party/ppapi/cpp/module.h"
static pp::Module* g_module_singleton = NULL;
diff --git a/remoting/client/plugin/pepper_entrypoints.h b/remoting/client/plugin/pepper_entrypoints.h
index a9ec138..ab6de20 100644
--- a/remoting/client/plugin/pepper_entrypoints.h
+++ b/remoting/client/plugin/pepper_entrypoints.h
@@ -5,8 +5,8 @@
#ifndef REMOTING_CLIENT_PLUGIN_PEPPER_ENTRYPOINTS_
#define REMOTING_CLIENT_PLUGIN_PEPPER_ENTRYPOINTS_
-#include "ppapi/c/pp_module.h"
-#include "ppapi/c/ppb.h"
+#include "third_party/ppapi/c/pp_module.h"
+#include "third_party/ppapi/c/ppb.h"
namespace remoting {
diff --git a/remoting/client/plugin/pepper_input_handler.cc b/remoting/client/plugin/pepper_input_handler.cc
index 5599655..c2e2099 100644
--- a/remoting/client/plugin/pepper_input_handler.cc
+++ b/remoting/client/plugin/pepper_input_handler.cc
@@ -4,7 +4,7 @@
#include "remoting/client/plugin/pepper_input_handler.h"
-#include "ppapi/c/pp_input_event.h"
+#include "third_party/ppapi/c/pp_input_event.h"
namespace remoting {
diff --git a/remoting/client/plugin/pepper_util.cc b/remoting/client/plugin/pepper_util.cc
index ff0c0f5..7c91233 100644
--- a/remoting/client/plugin/pepper_util.cc
+++ b/remoting/client/plugin/pepper_util.cc
@@ -5,8 +5,8 @@
#include "remoting/client/plugin/pepper_util.h"
#include "base/task.h"
-#include "ppapi/c/pp_completion_callback.h"
-#include "ppapi/cpp/module.h"
+#include "third_party/ppapi/c/pp_completion_callback.h"
+#include "third_party/ppapi/cpp/module.h"
namespace remoting {
diff --git a/remoting/client/plugin/pepper_util.h b/remoting/client/plugin/pepper_util.h
index 1201689..6c6cfb0 100644
--- a/remoting/client/plugin/pepper_util.h
+++ b/remoting/client/plugin/pepper_util.h
@@ -7,7 +7,7 @@
#include "base/basictypes.h"
-#include "ppapi/cpp/completion_callback.h"
+#include "third_party/ppapi/cpp/completion_callback.h"
class Task;
diff --git a/remoting/client/plugin/pepper_view.cc b/remoting/client/plugin/pepper_view.cc
index 26d128b..f941b08 100644
--- a/remoting/client/plugin/pepper_view.cc
+++ b/remoting/client/plugin/pepper_view.cc
@@ -5,14 +5,14 @@
#include "remoting/client/plugin/pepper_view.h"
#include "base/message_loop.h"
-#include "ppapi/cpp/graphics_2d.h"
-#include "ppapi/cpp/image_data.h"
-#include "ppapi/cpp/point.h"
-#include "ppapi/cpp/size.h"
#include "remoting/base/tracer.h"
#include "remoting/client/client_context.h"
#include "remoting/client/plugin/chromoting_instance.h"
#include "remoting/client/plugin/pepper_util.h"
+#include "third_party/ppapi/cpp/graphics_2d.h"
+#include "third_party/ppapi/cpp/image_data.h"
+#include "third_party/ppapi/cpp/point.h"
+#include "third_party/ppapi/cpp/size.h"
namespace remoting {
diff --git a/remoting/client/plugin/pepper_view.h b/remoting/client/plugin/pepper_view.h
index 1213533..80ce1ae 100644
--- a/remoting/client/plugin/pepper_view.h
+++ b/remoting/client/plugin/pepper_view.h
@@ -17,10 +17,10 @@
#include "base/scoped_ptr.h"
#include "base/task.h"
#include "media/base/video_frame.h"
-#include "ppapi/cpp/graphics_2d.h"
#include "remoting/client/chromoting_view.h"
#include "remoting/client/frame_consumer.h"
#include "remoting/client/rectangle_update_decoder.h"
+#include "third_party/ppapi/cpp/graphics_2d.h"
namespace remoting {
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
index dc72d8b..8661eb3 100644
--- a/remoting/remoting.gyp
+++ b/remoting/remoting.gyp
@@ -73,7 +73,7 @@
'chromoting_base',
'chromoting_client',
'chromoting_jingle_glue',
- '../ppapi/ppapi.gyp:ppapi_cpp_objects',
+ '../third_party/ppapi/ppapi.gyp:ppapi_cpp_objects',
],
'sources': [
'client/plugin/chromoting_instance.cc',