Changeset 54014 in webkit


Ignore:
Timestamp:
Jan 28, 2010 1:34:44 PM (14 years ago)
Author:
eric@webkit.org
Message:

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
Location:
trunk/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r54012 r54014  
     12010-01-28  Steve Block  <steveblock@google.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        Fix missing forward-declarations and includes in V8 bindings
     6        https://bugs.webkit.org/show_bug.cgi?id=34272
     7
     8        No new tests, build fix only.
     9
     10        * bindings/v8/ScriptController.h: Modified. Forward-declare NPObject
     11        * bindings/v8/V8DOMWindowShell.cpp: Modified. Include CString.h and PlatformBridge.h
     12        * bindings/v8/V8DOMWrapper.h: Modified. Forward-declare V8Proxy
     13
    1142010-01-28  Yury Semikhatsky  <yurys@chromium.org>
    215
  • trunk/WebCore/bindings/v8/ScriptController.h

    r54012 r54014  
    4242#include <wtf/RefCounted.h>
    4343#include <wtf/Vector.h>
     44
     45struct NPObject;
    4446
    4547namespace WebCore {
  • trunk/WebCore/bindings/v8/V8DOMWindowShell.cpp

    r53335 r54014  
    3232#include "V8DOMWindowShell.h"
    3333
    34 #include "ChromiumBridge.h"
     34#include "CString.h"
     35#include "PlatformBridge.h"
    3536#include "CSSMutableStyleDeclaration.h"
    3637#include "DateExtension.h"
  • trunk/WebCore/bindings/v8/V8DOMWrapper.h

    r53944 r54014  
    9393    class V8EventListener;
    9494    class V8ObjectEventListener;
     95    class V8Proxy;
    9596#if ENABLE(WEB_SOCKETS)
    9697    class WebSocket;
Note: See TracChangeset for help on using the changeset viewer.