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 /webkit/port/bindings | |
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 'webkit/port/bindings')
-rw-r--r-- | webkit/port/bindings/v8/np_v8object.h | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/npruntime_impl.h | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/npruntime_priv.h | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/v8_helpers.h | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/v8_np_utils.h | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/v8_npobject.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/webkit/port/bindings/v8/np_v8object.h b/webkit/port/bindings/v8/np_v8object.h index cc25057..b03522e 100644 --- a/webkit/port/bindings/v8/np_v8object.h +++ b/webkit/port/bindings/v8/np_v8object.h @@ -30,7 +30,7 @@ #ifndef NP_V8OBJECT_H__ #define NP_V8OBJECT_H__ -#include "bindings/npruntime.h" +#include "third_party/npapi/bindings/npruntime.h" #include <v8.h> namespace WebCore { diff --git a/webkit/port/bindings/v8/npruntime_impl.h b/webkit/port/bindings/v8/npruntime_impl.h index 7dae168..58ec490 100644 --- a/webkit/port/bindings/v8/npruntime_impl.h +++ b/webkit/port/bindings/v8/npruntime_impl.h @@ -26,7 +26,7 @@ #ifndef _NP_RUNTIME_IMPL_H_ #define _NP_RUNTIME_IMPL_H_ -#include "bindings/npruntime.h" +#include "third_party/npapi/bindings/npruntime.h" #ifdef __cplusplus extern "C" { diff --git a/webkit/port/bindings/v8/npruntime_priv.h b/webkit/port/bindings/v8/npruntime_priv.h index 543c7d1..88a3ac3 100644 --- a/webkit/port/bindings/v8/npruntime_priv.h +++ b/webkit/port/bindings/v8/npruntime_priv.h @@ -27,7 +27,7 @@ #define NP_RUNTIME_PRIV_H_ -#include "bindings/npruntime.h" +#include "third_party/npapi/bindings/npruntime.h" #ifdef __cplusplus extern "C" { diff --git a/webkit/port/bindings/v8/v8_helpers.h b/webkit/port/bindings/v8/v8_helpers.h index 39b53f3..3160721 100644 --- a/webkit/port/bindings/v8/v8_helpers.h +++ b/webkit/port/bindings/v8/v8_helpers.h @@ -30,7 +30,7 @@ #ifndef V8_HELPERS_H__ #define V8_HELPERS_H__ -#include "bindings/npruntime.h" +#include "third_party/npapi/bindings/npruntime.h" #include <v8.h> namespace WebCore { diff --git a/webkit/port/bindings/v8/v8_np_utils.h b/webkit/port/bindings/v8/v8_np_utils.h index 5124571..b547877 100644 --- a/webkit/port/bindings/v8/v8_np_utils.h +++ b/webkit/port/bindings/v8/v8_np_utils.h @@ -31,7 +31,7 @@ #define V8_NP_UTILS_H__ #include <v8.h> -#include "bindings/npruntime.h" +#include "third_party/npapi/bindings/npruntime.h" namespace WebCore { class Frame; diff --git a/webkit/port/bindings/v8/v8_npobject.h b/webkit/port/bindings/v8/v8_npobject.h index 3ff7d31..ff17a17 100644 --- a/webkit/port/bindings/v8/v8_npobject.h +++ b/webkit/port/bindings/v8/v8_npobject.h @@ -31,7 +31,7 @@ #define V8_NPOBJECT_H__ #include <v8.h> -#include "bindings/npruntime.h" +#include "third_party/npapi/bindings/npruntime.h" // These functions can be replaced by normal JS operation. // Getters |