Changeset 62807 in webkit


Ignore:
Timestamp:
Jul 8, 2010 11:31:36 AM (14 years ago)
Author:
benm@google.com
Message:

2010-07-08 Ben Murdoch <benm@google.com>

Reviewed by Pavel Feldman.

Fix build break in V8ConsoleCustom.cpp
https://bugs.webkit.org/show_bug.cgi?id=40825

No new tests as just fixing a build break.

  • bindings/v8/custom/V8ConsoleCustom.cpp: Guard profilesAccessorGetter

appropriately.

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r62804 r62807  
     12010-07-08  Ben Murdoch  <benm@google.com>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Fix build break in V8ConsoleCustom.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=40825
     7
     8        No new tests as just fixing a build break.
     9
     10        * bindings/v8/custom/V8ConsoleCustom.cpp: Guard profilesAccessorGetter
     11            appropriately.
     12
    1132010-07-08  Sam Weinig  <sam@webkit.org>
    214
  • trunk/WebCore/bindings/v8/custom/V8ConsoleCustom.cpp

    r61011 r62807  
    4545typedef Vector<RefPtr<ScriptProfile> > ProfilesArray;
    4646
     47#if ENABLE(JAVASCRIPT_DEBUGGER)
    4748v8::Handle<v8::Value> V8Console::profilesAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
    4849{
     
    5758    return result;
    5859}
     60#endif
    5961
    6062v8::Handle<v8::Value> V8Console::memoryAccessorGetter(v8::Local<v8::String>, const v8::AccessorInfo&)
Note: See TracChangeset for help on using the changeset viewer.