Changeset 155784 in webkit


Ignore:
Timestamp:
Sep 14, 2013 1:59:01 PM (11 years ago)
Author:
zandobersek@gmail.com
Message:

Unreviewed GTK build fix after r155774.

  • bindings/scripts/CodeGeneratorGObject.pm:

(SkipFunction): Temporarily skip generation of bindings for the Console::profile() and Console::profileEnd() methods
as they're not correctly generated for the moment.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r155782 r155784  
     12013-09-14  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Unreviewed GTK build fix after r155774.
     4
     5        * bindings/scripts/CodeGeneratorGObject.pm:
     6        (SkipFunction): Temporarily skip generation of bindings for the Console::profile() and Console::profileEnd() methods
     7        as they're not correctly generated for the moment.
     8
    192013-09-14  Darin Adler  <darin@apple.com>
    210
  • trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm

    r155778 r155784  
    274274    }
    275275
    276     if ($function->signature->name eq "timeEnd") {
     276    if ($function->signature->name eq "timeEnd" || $function->signature->name eq "profile" || $function->signature->name eq "profileEnd") {
    277277        return 1;
    278278    }
Note: See TracChangeset for help on using the changeset viewer.