diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-08 22:55:51 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-08 22:55:51 +0000 |
commit | b8ab654da215567c8292b2abeac6c8d972aa1cfb (patch) | |
tree | b14dd428367662b8033207a01c291f7ecf480634 /chrome/plugin/npobject_stub.cc | |
parent | 384988509daa2476d563e0a0bffd0c9118e7d630 (diff) | |
download | chromium_src-b8ab654da215567c8292b2abeac6c8d972aa1cfb.zip chromium_src-b8ab654da215567c8292b2abeac6c8d972aa1cfb.tar.gz chromium_src-b8ab654da215567c8292b2abeac6c8d972aa1cfb.tar.bz2 |
Fix a bunch of include problems that my deps checker tool found. Mostly I made the names of some third party includes fully qualified. I removed a qualification on a couple of the WebKit port includes that confuses it and isn't necessary (since WebKit includes aren't fully qualified).
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@604 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin/npobject_stub.cc')
-rw-r--r-- | chrome/plugin/npobject_stub.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/plugin/npobject_stub.cc b/chrome/plugin/npobject_stub.cc index 3ec6ca5..8851984a2 100644 --- a/chrome/plugin/npobject_stub.cc +++ b/chrome/plugin/npobject_stub.cc @@ -29,12 +29,12 @@ #include "chrome/plugin/npobject_stub.h" -#include "bindings/npapi.h" -#include "bindings/npruntime.h" #include "chrome/common/plugin_messages.h" #include "chrome/plugin/npobject_util.h" #include "chrome/plugin/plugin_channel_base.h" #include "chrome/renderer/webplugin_delegate_proxy.h" +#include "third_party/npapi/bindings/npapi.h" +#include "third_party/npapi/bindings/npruntime.h" NPObjectStub::NPObjectStub( NPObject* npobject, PluginChannelBase* channel, int route_id) |