summaryrefslogtreecommitdiffstats
path: root/chrome/renderer
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-02 04:11:57 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-02 04:11:57 +0000
commitd781d35b968a796d87d3c27811f6f89316a62d85 (patch)
treeab0ff5fae7b86032ae7340656ad095c37aa9b4fa /chrome/renderer
parent96cf77c0ebc06d9ad8c872a8e90927c00f996a20 (diff)
downloadchromium_src-d781d35b968a796d87d3c27811f6f89316a62d85.zip
chromium_src-d781d35b968a796d87d3c27811f6f89316a62d85.tar.gz
chromium_src-d781d35b968a796d87d3c27811f6f89316a62d85.tar.bz2
Switch to the new PPAPI repository. This removes the DEPS entry that refers to
the PPAPI repo, and fixes the includes to use the new location. TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/4164015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64716 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer')
-rw-r--r--chrome/renderer/DEPS1
-rw-r--r--chrome/renderer/pepper_plugin_delegate_impl.cc2
-rw-r--r--chrome/renderer/pepper_plugin_delegate_impl.h2
3 files changed, 3 insertions, 2 deletions
diff --git a/chrome/renderer/DEPS b/chrome/renderer/DEPS
index b7bf978..99df536 100644
--- a/chrome/renderer/DEPS
+++ b/chrome/renderer/DEPS
@@ -7,6 +7,7 @@ include_rules = [
"+media/ffmpeg",
"+media/filters",
"+media/video",
+ "+ppapi/c",
"+sandbox/src",
"+skia/include",
"+webkit/extensions",
diff --git a/chrome/renderer/pepper_plugin_delegate_impl.cc b/chrome/renderer/pepper_plugin_delegate_impl.cc
index ecaf0e4..b8ab08d 100644
--- a/chrome/renderer/pepper_plugin_delegate_impl.cc
+++ b/chrome/renderer/pepper_plugin_delegate_impl.cc
@@ -25,7 +25,7 @@
#include "chrome/renderer/render_view.h"
#include "chrome/renderer/webplugin_delegate_proxy.h"
#include "grit/locale_settings.h"
-#include "third_party/ppapi/c/dev/pp_video_dev.h"
+#include "ppapi/c/dev/pp_video_dev.h"
#include "third_party/WebKit/WebKit/chromium/public/WebFileChooserCompletion.h"
#include "third_party/WebKit/WebKit/chromium/public/WebFileChooserParams.h"
#include "third_party/WebKit/WebKit/chromium/public/WebPluginContainer.h"
diff --git a/chrome/renderer/pepper_plugin_delegate_impl.h b/chrome/renderer/pepper_plugin_delegate_impl.h
index a1fb6a0..90c659a 100644
--- a/chrome/renderer/pepper_plugin_delegate_impl.h
+++ b/chrome/renderer/pepper_plugin_delegate_impl.h
@@ -12,7 +12,7 @@
#include "base/basictypes.h"
#include "base/id_map.h"
#include "base/weak_ptr.h"
-#include "third_party/ppapi/c/pp_errors.h"
+#include "ppapi/c/pp_errors.h"
#include "webkit/glue/plugins/pepper_plugin_delegate.h"
#include "webkit/glue/plugins/pepper_plugin_instance.h"