Changeset 97084 in webkit


Ignore:
Timestamp:
Oct 10, 2011 2:14:37 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Add missing ifdef for JAVASCRIPT_DEBUGGER feature.
https://bugs.webkit.org/show_bug.cgi?id=69758

Patch by Nayan Kumar K <nayankk@motorola.com> on 2011-10-10
Reviewed by Adam Barth.

No new tests added since this is a build failure fix.

  • bindings/v8/custom/V8ScriptProfileCustom.cpp:
  • bindings/v8/custom/V8ScriptProfileNodeCustom.cpp:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r97079 r97084  
     12011-10-10  Nayan Kumar K  <nayankk@motorola.com>
     2
     3        Add missing ifdef for JAVASCRIPT_DEBUGGER feature.
     4        https://bugs.webkit.org/show_bug.cgi?id=69758
     5
     6        Reviewed by Adam Barth.
     7
     8        No new tests added since this is a build failure fix.
     9
     10        * bindings/v8/custom/V8ScriptProfileCustom.cpp:
     11        * bindings/v8/custom/V8ScriptProfileNodeCustom.cpp:
     12
    1132011-10-10  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Source/WebCore/bindings/v8/custom/V8ScriptProfileCustom.cpp

    r95901 r97084  
    3030
    3131#include "config.h"
     32#if ENABLE(JAVASCRIPT_DEBUGGER)
    3233#include "V8ScriptProfile.h"
    3334
     
    6061
    6162} // namespace WebCore
     63
     64#endif // ENABLE(JAVASCRIPT_DEBUGGER)
  • trunk/Source/WebCore/bindings/v8/custom/V8ScriptProfileNodeCustom.cpp

    r95901 r97084  
    3030
    3131#include "config.h"
     32#if ENABLE(JAVASCRIPT_DEBUGGER)
    3233#include "V8ScriptProfileNode.h"
    3334
     
    8081
    8182} // namespace WebCore
     83
     84#endif // ENABLE(JAVASCRIPT_DEBUGGER)
Note: See TracChangeset for help on using the changeset viewer.