diff options
author | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-04 00:08:09 +0000 |
---|---|---|
committer | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-04 00:08:09 +0000 |
commit | 6a51384f1b940fa0155ba69b374c7c51c9f93c65 (patch) | |
tree | aa2bb8df4ea99a39f25d023176903caadc492e03 /webkit/pending | |
parent | 8a93111c16314b823c4a3e506cb4893b8a24898c (diff) | |
download | chromium_src-6a51384f1b940fa0155ba69b374c7c51c9f93c65.zip chromium_src-6a51384f1b940fa0155ba69b374c7c51c9f93c65.tar.gz chromium_src-6a51384f1b940fa0155ba69b374c7c51c9f93c65.tar.bz2 |
Get JSC build a closer to compiling.
There's still a ton to do here, but I wanted
to get something in so others could start hacking.
I think the only projects left that don't compile are KJSBindings_prebuild and WebCore.
Review URL: http://codereview.chromium.org/6473
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2863 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/pending')
-rw-r--r-- | webkit/pending/DerivedSources.make | 7 | ||||
-rw-r--r-- | webkit/pending/ScriptController.h | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/webkit/pending/DerivedSources.make b/webkit/pending/DerivedSources.make index b4ce4bc..52ea1d6 100644 --- a/webkit/pending/DerivedSources.make +++ b/webkit/pending/DerivedSources.make @@ -420,7 +420,6 @@ all : \ JSHTMLVideoElement.h \ JSHistory.h \ JSKeyboardEvent.h \ - JSLocation.lut.h \ JSMediaError.h \ JSMediaList.h \ JSMessageEvent.h \ @@ -585,7 +584,6 @@ all : \ JSUIEvent.h \ JSVoidCallback.h \ JSWheelEvent.h \ - JSXMLHttpRequest.lut.h \ JSXMLHttpRequestException.h \ JSXMLSerializer.h \ JSXPathEvaluator.h \ @@ -593,7 +591,6 @@ all : \ JSXPathExpression.h \ JSXPathNSResolver.h \ JSXPathResult.h \ - JSXSLTProcessor.lut.h \ SVGElementFactory.cpp \ SVGNames.cpp \ HTMLNames.cpp \ @@ -601,10 +598,6 @@ all : \ XLinkNames.cpp \ XMLNames.cpp \ XPathGrammar.cpp \ - kjs_css.lut.h \ - kjs_events.lut.h \ - kjs_navigator.lut.h \ - kjs_window.lut.h \ tokenizer.cpp \ WebCore.exp \ # diff --git a/webkit/pending/ScriptController.h b/webkit/pending/ScriptController.h index b03ae99..3350289 100644 --- a/webkit/pending/ScriptController.h +++ b/webkit/pending/ScriptController.h @@ -164,9 +164,11 @@ public: ScriptController(Frame*); ~ScriptController(); +#if USE(V8) // TODO(eseidel): V8Proxy should either be folded into ScriptController // or this accessor should be made JSProxy* V8Proxy* proxy() { return m_proxy.get(); } +#endif // Evaluate a script file in the environment of this proxy. // If succeeded, 'succ' is set to true and result is returned |