diff options
Diffstat (limited to 'remoting/client')
-rw-r--r-- | remoting/client/plugin/chromoting_instance.cc | 6 | ||||
-rw-r--r-- | remoting/client/plugin/chromoting_instance.h | 10 | ||||
-rw-r--r-- | remoting/client/plugin/chromoting_scriptable_object.cc | 3 | ||||
-rw-r--r-- | remoting/client/plugin/chromoting_scriptable_object.h | 4 | ||||
-rw-r--r-- | remoting/client/plugin/pepper_entrypoints.cc | 12 | ||||
-rw-r--r-- | remoting/client/plugin/pepper_entrypoints.h | 4 | ||||
-rw-r--r-- | remoting/client/plugin/pepper_input_handler.cc | 2 | ||||
-rw-r--r-- | remoting/client/plugin/pepper_util.cc | 4 | ||||
-rw-r--r-- | remoting/client/plugin/pepper_util.h | 2 | ||||
-rw-r--r-- | remoting/client/plugin/pepper_view.cc | 8 | ||||
-rw-r--r-- | remoting/client/plugin/pepper_view.h | 2 |
11 files changed, 29 insertions, 28 deletions
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 { |