diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-24 19:19:16 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-24 19:19:16 +0000 |
commit | 1051ccbdf5ebcaaa967db454393b85ed84fd36fb (patch) | |
tree | c4e67e3470f15be5a2472628537967e10a62d6aa /webkit/port/bindings/v8/v8_custom.cpp | |
parent | 7ef2e9d25fa0e7fbdc71def514da476f5756751b (diff) | |
download | chromium_src-1051ccbdf5ebcaaa967db454393b85ed84fd36fb.zip chromium_src-1051ccbdf5ebcaaa967db454393b85ed84fd36fb.tar.gz chromium_src-1051ccbdf5ebcaaa967db454393b85ed84fd36fb.tar.bz2 |
Bridge calls to get the root NPObject from a WebPluginContainer.
I also did a little cleanup in getPlugins. I found that there was a
WebPluginInfo struct declared within the WebCore namespace that was causing us
to need '::' in front of WebPluginInfo. I killed the erroneous declaration so
that the rest could be cleaned up. I also renamed getPlugins to plugins since
I think that is more consistent with how Apple names these kinds of methods.
There was some old, unused USE(JSC) code in ScriptController.cpp that I deleted.
R=erikkay
Review URL: http://codereview.chromium.org/12601
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5928 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port/bindings/v8/v8_custom.cpp')
-rw-r--r-- | webkit/port/bindings/v8/v8_custom.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/webkit/port/bindings/v8/v8_custom.cpp b/webkit/port/bindings/v8/v8_custom.cpp index 57036bf..3f001ec 100644 --- a/webkit/port/bindings/v8/v8_custom.cpp +++ b/webkit/port/bindings/v8/v8_custom.cpp @@ -68,6 +68,7 @@ #include "FloatRect.h" #include "Frame.h" #include "FrameLoader.h" +#include "FrameLoadRequest.h" #include "FrameTree.h" #include "FrameView.h" #include "HTMLBodyElement.h" @@ -119,10 +120,6 @@ #include "Navigator.h" -#undef LOG - -#include "webkit/glue/webplugin_impl.h" - // Horizontal and vertical offset, from the parent content area, around newly // opened popups that don't specify a location. static const int kPopupTilePixels = 10; |