Commit ca72ade5 authored by eric@webkit.org's avatar eric@webkit.org

2010-01-28 Steve Block <steveblock@google.com>

        Reviewed by Adam Barth.

        Fix missing forward-declarations and includes in V8 bindings
        https://bugs.webkit.org/show_bug.cgi?id=34272

        No new tests, build fix only.

        * bindings/v8/ScriptController.h: Modified. Forward-declare NPObject
        * bindings/v8/V8DOMWindowShell.cpp: Modified. Include CString.h and PlatformBridge.h
        * bindings/v8/V8DOMWrapper.h: Modified. Forward-declare V8Proxy

git-svn-id: svn://svn.chromium.org/blink/trunk@54014 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent eaaf071d
2010-01-28 Steve Block <steveblock@google.com>
Reviewed by Adam Barth.
Fix missing forward-declarations and includes in V8 bindings
https://bugs.webkit.org/show_bug.cgi?id=34272
No new tests, build fix only.
* bindings/v8/ScriptController.h: Modified. Forward-declare NPObject
* bindings/v8/V8DOMWindowShell.cpp: Modified. Include CString.h and PlatformBridge.h
* bindings/v8/V8DOMWrapper.h: Modified. Forward-declare V8Proxy
2010-01-28 Yury Semikhatsky <yurys@chromium.org> 2010-01-28 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Adam Barth. Reviewed by Adam Barth.
...@@ -42,6 +42,8 @@ ...@@ -42,6 +42,8 @@
#include <wtf/RefCounted.h> #include <wtf/RefCounted.h>
#include <wtf/Vector.h> #include <wtf/Vector.h>
struct NPObject;
namespace WebCore { namespace WebCore {
class DOMWrapperWorld; class DOMWrapperWorld;
......
...@@ -31,7 +31,8 @@ ...@@ -31,7 +31,8 @@
#include "config.h" #include "config.h"
#include "V8DOMWindowShell.h" #include "V8DOMWindowShell.h"
#include "ChromiumBridge.h" #include "CString.h"
#include "PlatformBridge.h"
#include "CSSMutableStyleDeclaration.h" #include "CSSMutableStyleDeclaration.h"
#include "DateExtension.h" #include "DateExtension.h"
#include "DocumentLoader.h" #include "DocumentLoader.h"
......
...@@ -92,6 +92,7 @@ namespace WebCore { ...@@ -92,6 +92,7 @@ namespace WebCore {
class StyleSheetList; class StyleSheetList;
class V8EventListener; class V8EventListener;
class V8ObjectEventListener; class V8ObjectEventListener;
class V8Proxy;
#if ENABLE(WEB_SOCKETS) #if ENABLE(WEB_SOCKETS)
class WebSocket; class WebSocket;
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment