Changeset 151199 in webkit


Ignore:
Timestamp:
Jun 5, 2013 12:08:40 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

Move MemoryInfo under window.internals
https://bugs.webkit.org/show_bug.cgi?id=117197

Reviewed by Ryosuke Niwa.

.:

  • Source/autotools/symbols.filter: Export the required symbol.

PerformanceTests:

  • resources/runner.js: Remove the setMemoryEnabled call, it's not required anymore as the memory

info is now accessed through window.internals and doesn't need the setting to be enabled to work.

Source/WebCore:

The MemoryInfo interface is not a subject of any specification and should not be exposed
to the Web. It's still used by the performance tests so it is moved under the testing
internals, accessible through window.internals.memoryInfo.

The jsHeapSizeLimit attribute is removed from the MemoryInfo interface as that value was
only usable when using the V8 bindings which are not supported anymore. A small fast/harness
test is also provided to check that the MemoryInfo object is accessible through window.internals.

Test: fast/harness/memoryinfo-object.html

  • CMakeLists.txt:
  • DerivedSources.cpp:
  • DerivedSources.make:
  • DerivedSources.pri:
  • GNUmakefile.list.am:
  • Target.pri:
  • UseJSC.cmake:
  • WebCore.exp.in:
  • WebCore.order:
  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.vcxproj/WebCore.vcxproj.filters:
  • WebCore.vcxproj/WebCoreTestSupport.vcxproj:
  • WebCore.vcxproj/WebCoreTestSupport.vcxproj.filters:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/gobject/GNUmakefile.am: Remove the GObject bindings targets for MemoryInfo.
  • bindings/js/JSBindingsAllInOne.cpp: Remove the JSMemoryInfo.h and MemoryInfo.h inclusion.
  • bindings/js/JSMemoryInfoCustom.cpp: Removed.
  • bindings/js/ScriptGCEvent.cpp: Remove the ENABLE(INSPECTOR) guards.

(WebCore::ScriptGCEvent::getHeapSize): Remove the jsHeapSizeLimit assignment.

  • bindings/js/ScriptGCEvent.h: Remove the ENABLE(INSPECTOR) guards.

(WebCore::HeapInfo::HeapInfo): Remove the jsHeapSizeLimit member.

  • page/Console.cpp: Remove the Console::memory method.
  • page/Console.h: Ditto.
  • page/Console.idl: Remove the window.console.memory attribute.
  • page/MemoryInfo.cpp: Removed.
  • page/Performance.cpp: Remove the Performance::memory method.
  • page/Performance.h: Ditto.
  • page/Performance.idl: Remove the window.performance.memory attribute.
  • testing/Internals.cpp:

(WebCore::Internals::memoryInfo): Return a MemoryInfo object upon invoking.

  • testing/Internals.h: Declare the Internals::memoryInfo method.
  • testing/Internals.idl: Expose the window.internals.memoryInfo operation.
  • testing/MemoryInfo.h: Renamed from Source/WebCore/page/MemoryInfo.h.

(WebCore::MemoryInfo::create): Return a new RefPtr-wrapped MemoryInfo object.
(WebCore::MemoryInfo::usedJSHeapSize): Return the value of the equally-named HeapInfo member.
(WebCore::MemoryInfo::totalJSHeapSize): Ditto.
(WebCore::MemoryInfo::MemoryInfo): Acquire the current heap info upon construction.

  • testing/MemoryInfo.idl: Renamed from Source/WebCore/page/MemoryInfo.idl.

The jsHeapSizeLimit attribute is removed.

Tools:

  • GNUmakefile.am: Add the testing/MemoryInfo.(h|idl) files and the generated targets to

the Automake build

  • Scripts/webkitperl/filter-build-webkit_unittest/shouldIgnoreLine_unittests.pl: List the

testing/MemoryInfo.idl file instead of page/MemoryInfo.idl.

LayoutTests:

Remove window.performance.memory property listings from the baselines, the object was moved
under window.internals. The latter is tested throug the new fast/harness test.

  • fast/dom/Window/window-properties-performance-expected.txt:
  • fast/harness/memoryinfo-object-expected.txt: Added.
  • fast/harness/memoryinfo-object.html: Added.
  • platform/efl/fast/dom/Window/window-properties-performance-expected.txt:
  • platform/gtk/fast/dom/Window/window-properties-performance-expected.txt:
  • platform/qt/fast/dom/Window/window-properties-performance-expected.txt:
Location:
trunk
Files:
4 added
4 deleted
40 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r151169 r151199  
     12013-06-05  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Move MemoryInfo under window.internals
     4        https://bugs.webkit.org/show_bug.cgi?id=117197
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * Source/autotools/symbols.filter: Export the required symbol.
     9
    1102013-06-04  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    211
  • trunk/LayoutTests/ChangeLog

    r151194 r151199  
     12013-06-05  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Move MemoryInfo under window.internals
     4        https://bugs.webkit.org/show_bug.cgi?id=117197
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Remove window.performance.memory property listings from the baselines, the object was moved
     9        under window.internals. The latter is tested throug the new fast/harness test.
     10
     11        * fast/dom/Window/window-properties-performance-expected.txt:
     12        * fast/harness/memoryinfo-object-expected.txt: Added.
     13        * fast/harness/memoryinfo-object.html: Added.
     14        * platform/efl/fast/dom/Window/window-properties-performance-expected.txt:
     15        * platform/gtk/fast/dom/Window/window-properties-performance-expected.txt:
     16        * platform/qt/fast/dom/Window/window-properties-performance-expected.txt:
     17
    1182013-06-04  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    219
  • trunk/LayoutTests/fast/dom/Window/window-properties-performance-expected.txt

    r131106 r151199  
    22
    33window.performance [object Performance]
    4 window.performance.memory [object MemoryInfo]
    5 window.performance.memory.jsHeapSizeLimit [number]
    6 window.performance.memory.totalJSHeapSize [number]
    7 window.performance.memory.usedJSHeapSize [number]
    84window.performance.navigation [object PerformanceNavigation]
    95window.performance.navigation.TYPE_BACK_FORWARD [number]
  • trunk/LayoutTests/platform/efl/fast/dom/Window/window-properties-performance-expected.txt

    r131106 r151199  
    22
    33window.performance [object Performance]
    4 window.performance.memory [object MemoryInfo]
    5 window.performance.memory.jsHeapSizeLimit [undefined]
    6 window.performance.memory.totalJSHeapSize [number]
    7 window.performance.memory.usedJSHeapSize [number]
    84window.performance.navigation [object PerformanceNavigation]
    95window.performance.navigation.TYPE_BACK_FORWARD [number]
  • trunk/LayoutTests/platform/gtk/fast/dom/Window/window-properties-performance-expected.txt

    r139785 r151199  
    22
    33window.performance [object Performance]
    4 window.performance.memory [object MemoryInfo]
    5 window.performance.memory.jsHeapSizeLimit [undefined]
    6 window.performance.memory.totalJSHeapSize [number]
    7 window.performance.memory.usedJSHeapSize [number]
    84window.performance.navigation [object PerformanceNavigation]
    95window.performance.navigation.TYPE_BACK_FORWARD [number]
  • trunk/LayoutTests/platform/qt/fast/dom/Window/window-properties-performance-expected.txt

    r131106 r151199  
    22
    33window.performance [object Performance]
    4 window.performance.memory [object MemoryInfo]
    5 window.performance.memory.jsHeapSizeLimit [undefined]
    6 window.performance.memory.totalJSHeapSize [number]
    7 window.performance.memory.usedJSHeapSize [number]
    84window.performance.navigation [object PerformanceNavigation]
    95window.performance.navigation.TYPE_BACK_FORWARD [number]
  • trunk/PerformanceTests/ChangeLog

    r150955 r151199  
     12013-06-05  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Move MemoryInfo under window.internals
     4        https://bugs.webkit.org/show_bug.cgi?id=117197
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * resources/runner.js: Remove the setMemoryEnabled call, it's not required anymore as the memory
     9        info is now accessed through window.internals and doesn't need the setting to be enabled to work.
     10
    1112013-05-30  Ryosuke Niwa  <rniwa@webkit.org>
    212
  • trunk/PerformanceTests/resources/runner.js

    r144583 r151199  
    11// There are tests for computeStatistics() located in LayoutTests/fast/harness/perftests
    2 
    3 // We need access to console.memory for the memory measurements
    4 if (window.internals)
    5     internals.settings.setMemoryInfoEnabled(true);
    62
    73if (window.testRunner) {
     
    107103
    108104    function getUsedJSHeap() {
    109         return console.memory.usedJSHeapSize;
     105        return window.internals.memoryInfo().usedJSHeapSize;
    110106    }
    111107
  • trunk/Source/WebCore/CMakeLists.txt

    r151169 r151199  
    563563    page/History.idl
    564564    page/Location.idl
    565     page/MemoryInfo.idl
    566565    page/Navigator.idl
    567566    page/Performance.idl
     
    17481747    page/History.cpp
    17491748    page/Location.cpp
    1750     page/MemoryInfo.cpp
    17511749    page/MouseEventWithHitTestResults.cpp
    17521750    page/Navigator.cpp
     
    29262924    testing/InternalSettings.idl
    29272925    testing/MallocStatistics.idl
     2926    testing/MemoryInfo.idl
    29282927    testing/TypeConversions.idl
    29292928)
  • trunk/Source/WebCore/ChangeLog

    r151195 r151199  
     12013-06-05  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Move MemoryInfo under window.internals
     4        https://bugs.webkit.org/show_bug.cgi?id=117197
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        The MemoryInfo interface is not a subject of any specification and should not be exposed
     9        to the Web. It's still used by the performance tests so it is moved under the testing
     10        internals, accessible through window.internals.memoryInfo.
     11
     12        The jsHeapSizeLimit attribute is removed from the MemoryInfo interface as that value was
     13        only usable when using the V8 bindings which are not supported anymore. A small fast/harness
     14        test is also provided to check that the MemoryInfo object is accessible through window.internals.
     15
     16        Test: fast/harness/memoryinfo-object.html
     17
     18        * CMakeLists.txt:
     19        * DerivedSources.cpp:
     20        * DerivedSources.make:
     21        * DerivedSources.pri:
     22        * GNUmakefile.list.am:
     23        * Target.pri:
     24        * UseJSC.cmake:
     25        * WebCore.exp.in:
     26        * WebCore.order:
     27        * WebCore.vcxproj/WebCore.vcxproj:
     28        * WebCore.vcxproj/WebCore.vcxproj.filters:
     29        * WebCore.vcxproj/WebCoreTestSupport.vcxproj:
     30        * WebCore.vcxproj/WebCoreTestSupport.vcxproj.filters:
     31        * WebCore.xcodeproj/project.pbxproj:
     32        * bindings/gobject/GNUmakefile.am: Remove the GObject bindings targets for MemoryInfo.
     33        * bindings/js/JSBindingsAllInOne.cpp: Remove the JSMemoryInfo.h and MemoryInfo.h inclusion.
     34        * bindings/js/JSMemoryInfoCustom.cpp: Removed.
     35        * bindings/js/ScriptGCEvent.cpp: Remove the ENABLE(INSPECTOR) guards.
     36        (WebCore::ScriptGCEvent::getHeapSize): Remove the jsHeapSizeLimit assignment.
     37        * bindings/js/ScriptGCEvent.h: Remove the ENABLE(INSPECTOR) guards.
     38        (WebCore::HeapInfo::HeapInfo): Remove the jsHeapSizeLimit member.
     39        * page/Console.cpp: Remove the Console::memory method.
     40        * page/Console.h: Ditto.
     41        * page/Console.idl: Remove the window.console.memory attribute.
     42        * page/MemoryInfo.cpp: Removed.
     43        * page/Performance.cpp: Remove the Performance::memory method.
     44        * page/Performance.h: Ditto.
     45        * page/Performance.idl: Remove the window.performance.memory attribute.
     46        * testing/Internals.cpp:
     47        (WebCore::Internals::memoryInfo): Return a MemoryInfo object upon invoking.
     48        * testing/Internals.h: Declare the Internals::memoryInfo method.
     49        * testing/Internals.idl: Expose the window.internals.memoryInfo operation.
     50        * testing/MemoryInfo.h: Renamed from Source/WebCore/page/MemoryInfo.h.
     51        (WebCore::MemoryInfo::create): Return a new RefPtr-wrapped MemoryInfo object.
     52        (WebCore::MemoryInfo::usedJSHeapSize): Return the value of the equally-named HeapInfo member.
     53        (WebCore::MemoryInfo::totalJSHeapSize): Ditto.
     54        (WebCore::MemoryInfo::MemoryInfo): Acquire the current heap info upon construction.
     55        * testing/MemoryInfo.idl: Renamed from Source/WebCore/page/MemoryInfo.idl.
     56        The jsHeapSizeLimit attribute is removed.
     57
    1582013-06-04  Peter Gal  <galpeter@inf.u-szeged.hu>
    259
  • trunk/Source/WebCore/DerivedSources.cpp

    r150045 r151199  
    253253#include "JSMediaSource.cpp"
    254254#endif
    255 #include "JSMemoryInfo.cpp"
    256255#include "JSMessageChannel.cpp"
    257256#include "JSMessageEvent.cpp"
  • trunk/Source/WebCore/DerivedSources.make

    r151169 r151199  
    454454    $(WebCore)/page/History.idl \
    455455    $(WebCore)/page/Location.idl \
    456     $(WebCore)/page/MemoryInfo.idl \
    457456    $(WebCore)/page/Navigator.idl \
    458457    $(WebCore)/page/Performance.idl \
     
    627626    $(WebCore)/testing/InternalSettings.idl \
    628627    $(WebCore)/testing/MallocStatistics.idl \
     628    $(WebCore)/testing/MemoryInfo.idl \
    629629    $(WebCore)/testing/TypeConversions.idl \
    630630    $(WebCore)/workers/AbstractWorker.idl \
  • trunk/Source/WebCore/DerivedSources.pri

    r151169 r151199  
    451451    $$PWD/page/History.idl \
    452452    $$PWD/page/Location.idl \
    453     $$PWD/page/MemoryInfo.idl \
    454453    $$PWD/page/Navigator.idl \
    455454    $$PWD/page/Performance.idl \
     
    474473    $$PWD/testing/InternalSettings.idl \
    475474    $$PWD/testing/MallocStatistics.idl \
     475    $$PWD/testing/MemoryInfo.idl \
    476476    $$PWD/testing/TypeConversions.idl \
    477477    $$PWD/workers/AbstractWorker.idl \
  • trunk/Source/WebCore/GNUmakefile.list.am

    r150971 r151199  
    531531        DerivedSources/WebCore/JSMediaQueryList.cpp \
    532532        DerivedSources/WebCore/JSMediaQueryList.h \
    533         DerivedSources/WebCore/JSMemoryInfo.cpp \
    534         DerivedSources/WebCore/JSMemoryInfo.h \
    535533        DerivedSources/WebCore/JSMessageChannel.cpp \
    536534        DerivedSources/WebCore/JSMessageChannel.h \
     
    16241622        $(WebCore)/page/History.idl \
    16251623        $(WebCore)/page/Location.idl \
    1626         $(WebCore)/page/MemoryInfo.idl \
    16271624        $(WebCore)/page/Navigator.idl \
    16281625        $(WebCore)/page/Performance.idl \
     
    17931790        $(WebCore)/testing/InternalSettings.idl \
    17941791        $(WebCore)/testing/MallocStatistics.idl \
     1792        $(WebCore)/testing/MemoryInfo.idl \
    17951793        $(WebCore)/testing/TypeConversions.idl \
    17961794        $(WebCore)/workers/AbstractWorker.idl \
     
    24542452        Source/WebCore/bindings/js/JSMediaListCustom.h \
    24552453        Source/WebCore/bindings/js/JSMediaListCustom.cpp \
    2456         Source/WebCore/bindings/js/JSMemoryInfoCustom.cpp \
    24572454        Source/WebCore/bindings/js/JSMessageChannelCustom.cpp \
    24582455        Source/WebCore/bindings/js/JSMessageEventCustom.cpp \
     
    42404237        Source/WebCore/page/Location.h \
    42414238        Source/WebCore/page/MediaCanStartListener.h \
    4242         Source/WebCore/page/MemoryInfo.cpp \
    4243         Source/WebCore/page/MemoryInfo.h \
    42444239        Source/WebCore/page/MouseEventWithHitTestResults.cpp \
    42454240        Source/WebCore/page/MouseEventWithHitTestResults.h \
  • trunk/Source/WebCore/Target.pri

    r151091 r151199  
    156156     bindings/js/JSMainThreadExecState.cpp \
    157157     bindings/js/JSMediaListCustom.cpp \
    158      bindings/js/JSMemoryInfoCustom.cpp \
    159158     bindings/js/JSMessageChannelCustom.cpp \
    160159     bindings/js/JSMessageEventCustom.cpp \
     
    926925    page/History.cpp \
    927926    page/Location.cpp \
    928     page/MemoryInfo.cpp \
    929927    page/MouseEventWithHitTestResults.cpp \
    930928    page/Navigator.cpp \
     
    28152813    testing/InternalSettings.h \
    28162814    testing/MallocStatistics.h \
     2815    testing/MemoryInfo.h \
    28172816    testing/TypeConversions.h \
    28182817    workers/AbstractWorker.h \
  • trunk/Source/WebCore/UseJSC.cmake

    r151169 r151199  
    107107    bindings/js/JSMainThreadExecState.cpp
    108108    bindings/js/JSMediaListCustom.cpp
    109     bindings/js/JSMemoryInfoCustom.cpp
    110109    bindings/js/JSMessageChannelCustom.cpp
    111110    bindings/js/JSMessageEventCustom.cpp
  • trunk/Source/WebCore/WebCore.exp.in

    r151040 r151199  
    12741274__ZN7WebCore9toElementEN3JSC7JSValueE
    12751275__ZN7WebCore9unionRectERKN3WTF6VectorINS_9FloatRectELm0ENS0_15CrashOnOverflowEEE
     1276__ZN7WebCore13ScriptGCEvent11getHeapSizeERNS_8HeapInfoE
    12761277__ZNK3JSC8Bindings10RootObject12globalObjectEv
    12771278__ZNK3WTF6String14createCFStringEv
  • trunk/Source/WebCore/WebCore.order

    r150663 r151199  
    2300923009__ZN7WebCore15jsConsoleMemoryEPN3JSC9ExecStateENS0_7JSValueERKNS0_10IdentifierE
    2301023010__ZNK7WebCore7Console6memoryEv
    23011 __ZN7WebCore10MemoryInfoC1EPNS_5FrameE
    23012 __ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEPNS_10MemoryInfoE
    23013 __ZN7WebCore13createWrapperINS_12JSMemoryInfoENS_10MemoryInfoEEEPNS_12JSDOMWrapperEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEPT0_
    23014 __ZN7WebCore15getDOMStructureINS_12JSMemoryInfoEEEPN3JSC9StructureEPNS2_9ExecStateEPNS_17JSDOMGlobalObjectE
    23015 __ZN7WebCore12JSMemoryInfo15createPrototypeEPN3JSC9ExecStateEPNS1_14JSGlobalObjectE
    2301623011__ZN7WebCore22JSDOMWindowConstructor18getOwnPropertySlotEPN3JSC9ExecStateERKNS1_10IdentifierERNS1_12PropertySlotE
    2301723012__ZN3JSC18getStaticValueSlotIN7WebCore22JSDOMWindowConstructorENS1_12JSDOMWrapperEEEbPNS_9ExecStateEPKNS_9HashTableEPT_RKNS_10IdentifierERNS_12PropertySlotE
     
    2308323078__ZN7WebCore23JSStyleMediaConstructor18getOwnPropertySlotEPN3JSC9ExecStateERKNS1_10IdentifierERNS1_12PropertySlotE
    2308423079__ZN3JSC18getStaticValueSlotIN7WebCore23JSStyleMediaConstructorENS1_12JSDOMWrapperEEEbPNS_9ExecStateEPKNS_9HashTableEPT_RKNS_10IdentifierERNS_12PropertySlotE
    23085 __ZN7WebCore12JSMemoryInfo18getOwnPropertySlotEPN3JSC9ExecStateERKNS1_10IdentifierERNS1_12PropertySlotE
    23086 __ZN3JSC18getStaticValueSlotIN7WebCore12JSMemoryInfoENS1_12JSDOMWrapperEEEbPNS_9ExecStateEPKNS_9HashTableEPT_RKNS_10IdentifierERNS_12PropertySlotE
    23087 __ZN7WebCore27jsMemoryInfoJsHeapSizeLimitEPN3JSC9ExecStateENS0_7JSValueERKNS0_10IdentifierE
    23088 __ZNK7WebCore12JSMemoryInfo15jsHeapSizeLimitEPN3JSC9ExecStateE
    23089 __ZN7WebCore26jsMemoryInfoUsedJSHeapSizeEPN3JSC9ExecStateENS0_7JSValueERKNS0_10IdentifierE
    23090 __ZN7WebCore27jsMemoryInfoTotalJSHeapSizeEPN3JSC9ExecStateENS0_7JSValueERKNS0_10IdentifierE
    2309123080__ZN7WebCore24jsCSSRuleListConstructorEPN3JSC9ExecStateENS0_7JSValueERKNS0_10IdentifierE
    2309223081__ZN7WebCore22jsMediaListConstructorEPN3JSC9ExecStateENS0_7JSValueERKNS0_10IdentifierE
     
    2311923108__ZNK7WebCore9DOMPlugin11descriptionEv
    2312023109__ZN7WebCore22jsDOMPluginConstructorEPN3JSC9ExecStateENS0_7JSValueERKNS0_10IdentifierE
    23121 __ZN7WebCore12JSMemoryInfoD1Ev
    2312223110__ZN7WebCore26jsHTMLBRElementConstructorEPN3JSC9ExecStateENS0_7JSValueERKNS0_10IdentifierE
    2312323111__ZN7WebCore37jsCanvasRenderingContext2DConstructorEPN3JSC9ExecStateENS0_7JSValueERKNS0_10IdentifierE
     
    2324223230__ZN7WebCore22JSDOMWindowConstructorD1Ev
    2324323231__ZN7WebCore23JSStyleMediaConstructorD1Ev
    23244 __ZN7WebCore21JSMemoryInfoPrototypeD1Ev
    2324523232__ZN7WebCore30setJSHTMLButtonElementDisabledEPN3JSC9ExecStateEPNS0_8JSObjectENS0_7JSValueE
    2324623233__ZNK7WebCore15HTMLAreaElement16isMouseFocusableEv
     
    3387433861__ZN7WebCoreL27JSMediaQueryListTableValuesE
    3387533862__ZN7WebCoreL36JSMediaQueryListPrototypeTableValuesE
    33876 __ZN7WebCore21JSMemoryInfoPrototype6s_infoE
    33877 __ZN7WebCore12JSMemoryInfo6s_infoE
    33878 __ZTVN7WebCore17JSMemoryInfoOwnerE
    33879 __ZN7WebCoreL23JSMemoryInfoTableValuesE
    3388033863__ZN7WebCore27JSMessageChannelConstructor6s_infoE
    3388133864__ZN7WebCore25JSMessageChannelPrototype6s_infoE
     
    3705137034__ZZN7WebCore12wrapperOwnerEPNS_15DOMWrapperWorldEPNS_14MediaQueryListEE21jsMediaQueryListOwner
    3705237035__ZGVZN7WebCore12wrapperOwnerEPNS_15DOMWrapperWorldEPNS_14MediaQueryListEE21jsMediaQueryListOwner
    37053 __ZN7WebCoreL26JSMemoryInfoPrototypeTableE
    37054 __ZN7WebCoreL17JSMemoryInfoTableE
    37055 __ZZN7WebCore12wrapperOwnerEPNS_15DOMWrapperWorldEPNS_10MemoryInfoEE17jsMemoryInfoOwner
    37056 __ZGVZN7WebCore12wrapperOwnerEPNS_15DOMWrapperWorldEPNS_10MemoryInfoEE17jsMemoryInfoOwner
    3705737036__ZN7WebCoreL21JSMessageChannelTableE
    3705837037__ZN7WebCoreL30JSMessageChannelPrototypeTableE
     
    3942539404__ZZN7WebCore18quantizeMemorySizeEmE14bucketSizeList
    3942639405__ZGVZN7WebCore18quantizeMemorySizeEmE14bucketSizeList.b
    39427 __ZZN7WebCore10MemoryInfoC1EPNS_5FrameEE13heapSizeCache
    39428 __ZGVZN7WebCore10MemoryInfoC1EPNS_5FrameEE13heapSizeCache.b
    3942939406__ZN7WebCoreL19_timer_event_sourceE
    3943039407__ZN7WebCoreL34supportedImageMIMETypesForEncodingE
  • trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj

    r151067 r151199  
    16931693    </ClCompile>
    16941694    <ClCompile Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMediaQueryList.cpp">
    1695       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
    1696       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>
    1697       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild>
    1698       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
    1699       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
    1700       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
    1701     </ClCompile>
    1702     <ClCompile Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMemoryInfo.cpp">
    17031695      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
    17041696      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>
     
    97139705    </ClCompile>
    97149706    <ClCompile Include="..\bindings\js\JSMediaListCustom.cpp">
    9715       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
    9716       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>
    9717       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild>
    9718       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
    9719       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
    9720       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>
    9721     </ClCompile>
    9722     <ClCompile Include="..\bindings\js\JSMemoryInfoCustom.cpp">
    97239707      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
    97249708      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>
     
    1083010814    <ClInclude Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMediaList.h" />
    1083110815    <ClInclude Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMediaQueryList.h" />
    10832     <ClInclude Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMemoryInfo.h" />
    1083310816    <ClInclude Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMessageChannel.h" />
    1083410817    <ClInclude Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMessageEvent.h" />
  • trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters

    r151067 r151199  
    45824582      <Filter>bindings\js</Filter>
    45834583    </ClCompile>
    4584     <ClCompile Include="..\bindings\js\JSMemoryInfoCustom.cpp">
    4585       <Filter>bindings\js</Filter>
    4586     </ClCompile>
    45874584    <ClCompile Include="..\bindings\js\JSMessageChannelCustom.cpp">
    45884585      <Filter>bindings\js</Filter>
     
    60516048    </ClCompile>
    60526049    <ClCompile Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMediaQueryList.cpp">
    6053       <Filter>DerivedSources</Filter>
    6054     </ClCompile>
    6055     <ClCompile Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMemoryInfo.cpp">
    60566050      <Filter>DerivedSources</Filter>
    60576051    </ClCompile>
     
    1350413498    </ClInclude>
    1350513499    <ClInclude Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMediaQueryList.h">
    13506       <Filter>DerivedSources</Filter>
    13507     </ClInclude>
    13508     <ClInclude Include="$(ConfigurationBuildDir)\obj32\$(ProjectName)\DerivedSources\JSMemoryInfo.h">
    1350913500      <Filter>DerivedSources</Filter>
    1351013501    </ClInclude>
  • trunk/Source/WebCore/WebCore.vcxproj/WebCoreTestSupport.vcxproj

    r149220 r151199  
    172172      </ForcedIncludeFiles>
    173173    </ClCompile>
     174    <ClCompile Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSMemoryInfo.cpp">
     175      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     176      </PrecompiledHeader>
     177      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">
     178      </PrecompiledHeader>
     179      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">
     180      </PrecompiledHeader>
     181      <DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">4065;4273;4565;4701;4702;%(DisableSpecificWarnings)</DisableSpecificWarnings>
     182      <DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">4065;4273;4565;4701;4702;%(DisableSpecificWarnings)</DisableSpecificWarnings>
     183      <DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">4065;4273;4565;4701;4702;%(DisableSpecificWarnings)</DisableSpecificWarnings>
     184      <ForcedIncludeFiles Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     185      </ForcedIncludeFiles>
     186      <ForcedIncludeFiles Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">
     187      </ForcedIncludeFiles>
     188      <ForcedIncludeFiles Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">
     189      </ForcedIncludeFiles>
     190      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     191      </PrecompiledHeader>
     192      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">
     193      </PrecompiledHeader>
     194      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">
     195      </PrecompiledHeader>
     196      <DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">4065;4273;4565;4701;4702;%(DisableSpecificWarnings)</DisableSpecificWarnings>
     197      <DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">4065;4273;4565;4701;4702;%(DisableSpecificWarnings)</DisableSpecificWarnings>
     198      <DisableSpecificWarnings Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">4065;4273;4565;4701;4702;%(DisableSpecificWarnings)</DisableSpecificWarnings>
     199      <ForcedIncludeFiles Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     200      </ForcedIncludeFiles>
     201      <ForcedIncludeFiles Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">
     202      </ForcedIncludeFiles>
     203      <ForcedIncludeFiles Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">
     204      </ForcedIncludeFiles>
     205    </ClCompile>
    174206    <ClCompile Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSTypeConversions.cpp">
    175207      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     
    400432    <ClInclude Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\InternalSettingsGenerated.h" />
    401433    <ClInclude Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSMallocStatistics.h" />
     434    <ClInclude Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSMemoryInfo.h" />
    402435    <ClInclude Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSTypeConversions.h" />
    403436    <ClInclude Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSInternals.h" />
     
    405438    <ClInclude Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSInternalSettingsGenerated.h" />
    406439    <ClInclude Include="..\testing\MallocStatistics.h" />
     440    <ClInclude Include="..\testing\MemoryInfo.h" />
    407441    <ClInclude Include="..\testing\TypeConversions.h" />
    408442    <ClInclude Include="..\testing\Internals.h" />
  • trunk/Source/WebCore/WebCore.vcxproj/WebCoreTestSupport.vcxproj.filters

    r150910 r151199  
    1414    </ClCompile>
    1515    <ClCompile Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSMallocStatistics.cpp">
     16      <Filter>DerivedSources</Filter>
     17    </ClCompile>
     18    <ClCompile Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSMemoryInfo.cpp">
    1619      <Filter>DerivedSources</Filter>
    1720    </ClCompile>
     
    4548      <Filter>DerivedSources</Filter>
    4649    </ClInclude>
     50    <ClInclude Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSMemoryInfo.h">
     51      <Filter>DerivedSources</Filter>
     52    </ClInclude>
    4753    <ClInclude Include="$(ConfigurationBuildDir)\obj32\WebCore\DerivedSources\JSTypeConversions.h">
    4854      <Filter>DerivedSources</Filter>
     
    5864    </ClInclude>
    5965    <ClInclude Include="..\testing\MallocStatistics.h">
     66      <Filter>testing</Filter>
     67    </ClInclude>
     68    <ClInclude Include="..\testing\MemoryInfo.h">
    6069      <Filter>testing</Filter>
    6170    </ClInclude>
  • trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj

    r150971 r151199  
    33013301                9FA37EFC1172FDA600C4CD55 /* JSScriptProfileNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FA37EF81172FD9300C4CD55 /* JSScriptProfileNode.cpp */; };
    33023302                9FA37EFD1172FDA600C4CD55 /* JSScriptProfileNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA37EF91172FD9300C4CD55 /* JSScriptProfileNode.h */; };
    3303                 9FDC8FF212FAB0060099AB1C /* JSMemoryInfoCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FDC8FF112FAB0060099AB1C /* JSMemoryInfoCustom.cpp */; };
    3304                 9FFE3E7A11B59C5D0037874E /* MemoryInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FFE3E7811B59C5D0037874E /* MemoryInfo.cpp */; };
    3305                 9FFE3E7B11B59C5D0037874E /* MemoryInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FFE3E7911B59C5D0037874E /* MemoryInfo.h */; settings = {ATTRIBUTES = (Private, ); }; };
    3306                 9FFE3EA511B5A4390037874E /* JSMemoryInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FFE3EA311B5A4390037874E /* JSMemoryInfo.cpp */; };
    3307                 9FFE3EA611B5A4390037874E /* JSMemoryInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FFE3EA411B5A4390037874E /* JSMemoryInfo.h */; };
    33083303                A00B721A11DE6428008AB9FF /* CheckedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = A00B721911DE6427008AB9FF /* CheckedInt.h */; };
    33093304                A024575116CEAA27000E5671 /* EXTDrawBuffers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A024574E16CEAA27000E5671 /* EXTDrawBuffers.cpp */; };
     
    51905185                CD47B3FC16CC34F800A21EC8 /* CDMPrivateAVFoundation.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD47B3FA16CC34F800A21EC8 /* CDMPrivateAVFoundation.mm */; };
    51915186                CD4AC52A1496AE9A0087C4EF /* Composite.wav in Copy Audio Resources */ = {isa = PBXBuildFile; fileRef = CD4AC5281496AE2F0087C4EF /* Composite.wav */; };
     5187                CD5393D3175E018600C07123 /* JSMemoryInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD5393D1175E018600C07123 /* JSMemoryInfo.cpp */; };
     5188                CD5393D4175E018600C07123 /* JSMemoryInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = CD5393D2175E018600C07123 /* JSMemoryInfo.h */; };
    51925189                CD54DE4717468B6F005E5B36 /* AudioSessionManagerMac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD54DE4517468B6F005E5B36 /* AudioSessionManagerMac.cpp */; };
    51935190                CD54DE4B17469C6D005E5B36 /* AudioSessionMac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD54DE4917469C6D005E5B36 /* AudioSessionMac.cpp */; };
     
    97519748                9FA37EF81172FD9300C4CD55 /* JSScriptProfileNode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSScriptProfileNode.cpp; sourceTree = "<group>"; };
    97529749                9FA37EF91172FD9300C4CD55 /* JSScriptProfileNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSScriptProfileNode.h; sourceTree = "<group>"; };
    9753                 9FDC8FF112FAB0060099AB1C /* JSMemoryInfoCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSMemoryInfoCustom.cpp; sourceTree = "<group>"; };
    9754                 9FFE3E7811B59C5D0037874E /* MemoryInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MemoryInfo.cpp; sourceTree = "<group>"; };
    9755                 9FFE3E7911B59C5D0037874E /* MemoryInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryInfo.h; sourceTree = "<group>"; };
    9756                 9FFE3E7C11B59C6E0037874E /* MemoryInfo.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MemoryInfo.idl; sourceTree = "<group>"; };
    9757                 9FFE3EA311B5A4390037874E /* JSMemoryInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSMemoryInfo.cpp; sourceTree = "<group>"; };
    9758                 9FFE3EA411B5A4390037874E /* JSMemoryInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSMemoryInfo.h; sourceTree = "<group>"; };
    97599750                A00B721911DE6427008AB9FF /* CheckedInt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CheckedInt.h; path = canvas/CheckedInt.h; sourceTree = "<group>"; };
    97609751                A024574E16CEAA27000E5671 /* EXTDrawBuffers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EXTDrawBuffers.cpp; path = canvas/EXTDrawBuffers.cpp; sourceTree = "<group>"; };
     
    1192011911                CD4AC5281496AE2F0087C4EF /* Composite.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = Composite.wav; path = platform/audio/resources/Composite.wav; sourceTree = SOURCE_ROOT; };
    1192111912                CD4E0AFA11F7BC27009D3811 /* fullscreen.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = fullscreen.css; sourceTree = "<group>"; };
     11913                CD5393CB175DCCE600C07123 /* MemoryInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryInfo.h; sourceTree = "<group>"; };
     11914                CD5393CC175DCCE600C07123 /* MemoryInfo.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MemoryInfo.idl; sourceTree = "<group>"; };
     11915                CD5393D1175E018600C07123 /* JSMemoryInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSMemoryInfo.cpp; sourceTree = "<group>"; };
     11916                CD5393D2175E018600C07123 /* JSMemoryInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSMemoryInfo.h; sourceTree = "<group>"; };
    1192211917                CD54DE4517468B6F005E5B36 /* AudioSessionManagerMac.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioSessionManagerMac.cpp; sourceTree = "<group>"; };
    1192311918                CD54DE4917469C6D005E5B36 /* AudioSessionMac.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioSessionMac.cpp; sourceTree = "<group>"; };
     
    1391713912                                A7BE7EDD14C9175A0014489D /* MallocStatistics.h */,
    1391813913                                A7BE7EDE14C9175A0014489D /* MallocStatistics.idl */,
     13914                                CD5393CB175DCCE600C07123 /* MemoryInfo.h */,
     13915                                CD5393CC175DCCE600C07123 /* MemoryInfo.idl */,
    1391913916                                CDC26B3C160A62B00026757B /* MockCDM.cpp */,
    1392013917                                CDC26B3D160A62B00026757B /* MockCDM.h */,
     
    1393913936                                EBF5121A1696496C0056BD25 /* JSTypeConversions.cpp */,
    1394013937                                EBF5121B1696496C0056BD25 /* JSTypeConversions.h */,
     13938                                CD5393D1175E018600C07123 /* JSMemoryInfo.cpp */,
     13939                                CD5393D2175E018600C07123 /* JSMemoryInfo.h */,
    1394113940                        );
    1394213941                        name = Testing;
     
    1473814737                                BC59DEFA169DEDD80016AC34 /* make_settings.pl */,
    1473914738                                931BCC601124DFCB00BE70DD /* MediaCanStartListener.h */,
    14740                                 9FFE3E7811B59C5D0037874E /* MemoryInfo.cpp */,
    14741                                 9FFE3E7911B59C5D0037874E /* MemoryInfo.h */,
    14742                                 9FFE3E7C11B59C6E0037874E /* MemoryInfo.idl */,
    1474314739                                93EB355E09E37FD600F43799 /* MouseEventWithHitTestResults.cpp */,
    1474414740                                935C476209AC4CE600A6AAB4 /* MouseEventWithHitTestResults.h */,
     
    1886118857                                BCE1C43F0D9830F4003B02F2 /* JSLocationCustom.cpp */,
    1886218858                                AD726FE716D9F204003A4E6D /* JSMediaListCustom.h */,
    18863                                 9FDC8FF112FAB0060099AB1C /* JSMemoryInfoCustom.cpp */,
    1886418859                                E1A5F99A0E7EAA2500AF85EA /* JSMessageChannelCustom.cpp */,
    1886518860                                410B7E711045FAB000D8224F /* JSMessageEventCustom.cpp */,
     
    1902219017                                BCE1C4390D9830D3003B02F2 /* JSLocation.cpp */,
    1902319018                                BCE1C43A0D9830D3003B02F2 /* JSLocation.h */,
    19024                                 9FFE3EA311B5A4390037874E /* JSMemoryInfo.cpp */,
    19025                                 9FFE3EA411B5A4390037874E /* JSMemoryInfo.h */,
    1902619019                                A9D247F50D757E3300FDF959 /* JSNavigator.cpp */,
    1902719020                                A9D247F60D757E3300FDF959 /* JSNavigator.h */,
     
    2085620849                                AA5F3B8D16CC33D100455EB0 /* PlatformSpeechSynthesizerMock.h in Headers */,
    2085720850                                41815C1F138319830057AAA4 /* WebCoreTestSupport.h in Headers */,
     20851                                CD5393D4175E018600C07123 /* JSMemoryInfo.h in Headers */,
    2085820852                        );
    2085920853                        runOnlyForDeploymentPostprocessing = 0;
     
    2242622420                                D3A94A47122DC40F00A37BBC /* JSMediaQueryList.h in Headers */,
    2242722421                                FDBD480D159BC6870093EB4F /* JSMediaStreamAudioSourceNode.h in Headers */,
    22428                                 9FFE3EA611B5A4390037874E /* JSMemoryInfo.h in Headers */,
    2242922422                                E107400E0E77BDC00033AF24 /* JSMessageChannel.h in Headers */,
    2243022423                                75793EC90D0CE72D007FC0AC /* JSMessageEvent.h in Headers */,
     
    2282022813                                FD671A78159BB07000197559 /* MediaStreamAudioSourceNode.h in Headers */,
    2282122814                                BCB16C180979C3BD00467741 /* MemoryCache.h in Headers */,
    22822                                 9FFE3E7B11B59C5D0037874E /* MemoryInfo.h in Headers */,
    2282322815                                6571DCC81385E6A400702DD0 /* MemoryPressureHandler.h in Headers */,
    2282422816                                93309DFA099E64920056E581 /* MergeIdenticalElementsCommand.h in Headers */,
     
    2433724329                                AA5F3B8F16CC4B3900455EB0 /* PlatformSpeechSynthesizerMock.cpp in Sources */,
    2433824330                                41815C1E138319830057AAA4 /* WebCoreTestSupport.cpp in Sources */,
     24331                                CD5393D3175E018600C07123 /* JSMemoryInfo.cpp in Sources */,
    2433924332                        );
    2434024333                        runOnlyForDeploymentPostprocessing = 0;
     
    2559225585                                D3A94A46122DC40F00A37BBC /* JSMediaQueryList.cpp in Sources */,
    2559325586                                FDBD480C159BC6870093EB4F /* JSMediaStreamAudioSourceNode.cpp in Sources */,
    25594                                 9FFE3EA511B5A4390037874E /* JSMemoryInfo.cpp in Sources */,
    25595                                 9FDC8FF212FAB0060099AB1C /* JSMemoryInfoCustom.cpp in Sources */,
    2559625587                                E107400D0E77BDC00033AF24 /* JSMessageChannel.cpp in Sources */,
    2559725588                                E1A5F99B0E7EAA2500AF85EA /* JSMessageChannelCustom.cpp in Sources */,
     
    2600725998                                FD671A77159BB07000197559 /* MediaStreamAudioSourceNode.cpp in Sources */,
    2600825999                                BCB16C170979C3BD00467741 /* MemoryCache.cpp in Sources */,
    26009                                 9FFE3E7A11B59C5D0037874E /* MemoryInfo.cpp in Sources */,
    2601026000                                657EDA081385CB97004E0645 /* MemoryPressureHandler.cpp in Sources */,
    2601126001                                657EDA0B1385CBD8004E0645 /* MemoryPressureHandlerMac.mm in Sources */,
  • trunk/Source/WebCore/bindings/gobject/GNUmakefile.am

    r150074 r151199  
    214214        DerivedSources/webkitdom/WebKitDOMMediaQueryList.cpp \
    215215        DerivedSources/webkitdom/WebKitDOMMediaQueryListPrivate.h \
    216         DerivedSources/webkitdom/WebKitDOMMemoryInfo.cpp \
    217         DerivedSources/webkitdom/WebKitDOMMemoryInfoPrivate.h \
    218216        DerivedSources/webkitdom/WebKitDOMMessagePort.cpp \
    219217        DerivedSources/webkitdom/WebKitDOMMessagePortPrivate.h \
     
    407405        DerivedSources/webkitdom/WebKitDOMHistory.h \
    408406        DerivedSources/webkitdom/WebKitDOMLocation.h \
    409         DerivedSources/webkitdom/WebKitDOMMemoryInfo.h \
    410407        DerivedSources/webkitdom/WebKitDOMMicroDataItemValue.h \
    411408        DerivedSources/webkitdom/WebKitDOMObject.h \
  • trunk/Source/WebCore/bindings/js/JSBindingsAllInOne.cpp

    r150663 r151199  
    112112#include "JSMainThreadExecState.cpp"
    113113#include "JSMediaListCustom.cpp"
    114 #include "JSMemoryInfoCustom.cpp"
    115114#include "JSMessageChannelCustom.cpp"
    116115#include "JSMessageEventCustom.cpp"
     
    161160#include "JSXSLTProcessorCustom.cpp"
    162161#include "JavaScriptCallFrame.cpp"
    163 #include "MemoryInfo.cpp"
    164162#include "PageScriptDebugServer.cpp"
    165163#include "ScheduledAction.cpp"
  • trunk/Source/WebCore/bindings/js/ScriptGCEvent.cpp

    r148696 r151199  
    3131#include "config.h"
    3232
    33 #if ENABLE(INSPECTOR)
    34 
    3533#include "ScriptGCEvent.h"
    3634
     
    4947    info.totalJSHeapSize = vm->heap.capacity();
    5048    info.usedJSHeapSize = vm->heap.size();
    51     info.jsHeapSizeLimit = 0;
    5249}
    5350
    5451} // namespace WebCore
    55 
    56 #endif // ENABLE(INSPECTOR)
  • trunk/Source/WebCore/bindings/js/ScriptGCEvent.h

    r123873 r151199  
    3838        : usedJSHeapSize(0)
    3939        , totalJSHeapSize(0)
    40         , jsHeapSizeLimit(0)
    4140    {
    4241    }
     
    4443    size_t usedJSHeapSize;
    4544    size_t totalJSHeapSize;
    46     size_t jsHeapSizeLimit;
    4745};
    48 
    49 #if ENABLE(INSPECTOR)
    5046
    5147class ScriptGCEventListener;
     
    5955};
    6056
    61 #endif // ENABLE(INSPECTOR)
    62 
    6357} // namespace WebCore
    6458
  • trunk/Source/WebCore/page/Console.cpp

    r150214 r151199  
    4040#include "InspectorConsoleInstrumentation.h"
    4141#include "InspectorController.h"
    42 #include "MemoryInfo.h"
    4342#include "Page.h"
    4443#include "PageConsole.h"
     
    255254}
    256255
    257 PassRefPtr<MemoryInfo> Console::memory() const
    258 {
    259     // FIXME: Because we create a new object here each time,
    260     // console.memory !== console.memory, which seems wrong.
    261     return MemoryInfo::create(m_frame);
    262 }
    263 
    264256Page* Console::page() const
    265257{
  • trunk/Source/WebCore/page/Console.h

    r146208 r151199  
    4141
    4242class Frame;
    43 class MemoryInfo;
    4443class Page;
    4544class ScriptArguments;
     
    7978    void groupEnd();
    8079
    81     PassRefPtr<MemoryInfo> memory() const;
    82 
    8380private:
    8481    inline Page* page() const;
  • trunk/Source/WebCore/page/Console.idl

    r149796 r151199  
    6060    void groupEnd();
    6161    [CallWith=ScriptArguments|ScriptState] void clear();
    62 
    63     readonly attribute MemoryInfo memory;
    6462};
    6563
  • trunk/Source/WebCore/page/Performance.cpp

    r149999 r151199  
    3535#include "Document.h"
    3636#include "DocumentLoader.h"
    37 #include "MemoryInfo.h"
    3837#include "PerformanceEntry.h"
    3938#include "PerformanceNavigation.h"
     
    8180}
    8281
    83 PassRefPtr<MemoryInfo> Performance::memory() const
    84 {
    85     return MemoryInfo::create(m_frame);
    86 }
    87 
    8882PerformanceNavigation* Performance::navigation() const
    8983{
  • trunk/Source/WebCore/page/Performance.h

    r149999 r151199  
    3737#include "DOMWindowProperty.h"
    3838#include "EventTarget.h"
    39 #include "MemoryInfo.h"
    4039#include "PerformanceEntryList.h"
    4140#include "PerformanceNavigation.h"
     
    6261    virtual ScriptExecutionContext* scriptExecutionContext() const;
    6362
    64     PassRefPtr<MemoryInfo> memory() const;
    6563    PerformanceNavigation* navigation() const;
    6664    PerformanceTiming* timing() const;
  • trunk/Source/WebCore/page/Performance.idl

    r149999 r151199  
    3737    readonly attribute PerformanceNavigation navigation;
    3838    readonly attribute PerformanceTiming timing;
    39     readonly attribute MemoryInfo memory;
    4039
    4140#if defined(ENABLE_PERFORMANCE_TIMELINE) && ENABLE_PERFORMANCE_TIMELINE
  • trunk/Source/WebCore/testing/Internals.cpp

    r150652 r151199  
    7373#include "MallocStatistics.h"
    7474#include "MemoryCache.h"
     75#include "MemoryInfo.h"
    7576#include "NodeRenderingContext.h"
    7677#include "Page.h"
     
    18621863{
    18631864    return TypeConversions::create();
     1865}
     1866
     1867PassRefPtr<MemoryInfo> Internals::memoryInfo() const
     1868{
     1869    return MemoryInfo::create();
    18641870}
    18651871
  • trunk/Source/WebCore/testing/Internals.h

    r150652 r151199  
    5050class InspectorFrontendChannelDummy;
    5151class InternalSettings;
     52class MemoryInfo;
    5253class Node;
    5354class Page;
     
    275276    PassRefPtr<MallocStatistics> mallocStatistics() const;
    276277    PassRefPtr<TypeConversions> typeConversions() const;
     278    PassRefPtr<MemoryInfo> memoryInfo() const;
    277279
    278280    Vector<String> getReferencedFilePaths() const;
  • trunk/Source/WebCore/testing/Internals.idl

    r150652 r151199  
    234234    MallocStatistics mallocStatistics();
    235235    TypeConversions typeConversions();
     236    MemoryInfo memoryInfo();
    236237
    237238    DOMString[] getReferencedFilePaths();
  • trunk/Source/autotools/symbols.filter

    r149759 r151199  
    319319_ZN7WebCore17BatteryController14supplementNameEv;
    320320_ZN7WebCore17BatteryController22didChangeBatteryStatusERKN3WTF12AtomicStringENS1_10PassRefPtrINS_13BatteryStatusEEE;
     321_ZN7WebCore13ScriptGCEvent11getHeapSizeERNS_8HeapInfoE;
    321322
    322323local:
  • trunk/Tools/ChangeLog

    r151196 r151199  
     12013-06-05  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Move MemoryInfo under window.internals
     4        https://bugs.webkit.org/show_bug.cgi?id=117197
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * GNUmakefile.am: Add the testing/MemoryInfo.(h|idl) files and the generated targets to
     9        the Automake build
     10        * Scripts/webkitperl/filter-build-webkit_unittest/shouldIgnoreLine_unittests.pl: List the
     11        testing/MemoryInfo.idl file instead of page/MemoryInfo.idl.
     12
    1132013-06-03  Roger Fong  <roger_fong@apple.com>
    214
  • trunk/Tools/GNUmakefile.am

    r151135 r151199  
    5555        Source/WebCore/bindings/js/JSDOMWrapper.h \
    5656        Source/WebCore/testing/MallocStatistics.h \
     57        Source/WebCore/testing/MemoryInfo.h \
    5758        Source/WebCore/testing/Internals.cpp \
    5859        Source/WebCore/testing/Internals.h \
     
    6869        DerivedSources/WebCore/JSMallocStatistics.cpp \
    6970        DerivedSources/WebCore/JSMallocStatistics.h   \
     71        DerivedSources/WebCore/JSMemoryInfo.cpp \
     72        DerivedSources/WebCore/JSMemoryInfo.h \
    7073        DerivedSources/WebCore/JSInternals.cpp \
    7174        DerivedSources/WebCore/JSInternals.h   \
  • trunk/Tools/Scripts/webkitperl/filter-build-webkit_unittest/shouldIgnoreLine_unittests.pl

    r150924 r151199  
    5757/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: /Volumes/Data/Build/ANGLE.build/Release/ANGLE.build/Objects-normal/i386/debug.o has no symbols
    5858Showing first 200 notices only
    59 printf "WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.idl\nWebCore/Modules/encryptedmedia/MediaKeyNeededEvent.idl\nWebCore/Modules/encryptedmedia/MediaKeySession.idl\nWebCore/Modules/encryptedmedia/MediaKeys.idl\nWebCore/Modules/filesystem/DOMFileSystem.idl\nWebCore/Modules/filesystem/DOMFileSystemSync.idl\nWebCore/Modules/filesystem/DOMWindowFileSystem.idl\nWebCore/Modules/filesystem/DirectoryEntry.idl\nWebCore/Modules/filesystem/DirectoryEntrySync.idl\nWebCore/Modules/filesystem/DirectoryReader.idl\nWebCore/Modules/filesystem/DirectoryReaderSync.idl\nWebCore/Modules/filesystem/EntriesCallback.idl\nWebCore/Modules/filesystem/Entry.idl\nWebCore/Modules/filesystem/EntryArray.idl\nWebCore/Modules/filesystem/EntryArraySync.idl\nWebCore/Modules/filesystem/EntryCallback.idl\nWebCore/Modules/filesystem/EntrySync.idl\nWebCore/Modules/filesystem/ErrorCallback.idl\nWebCore/Modules/filesystem/FileCallback.idl\nWebCore/Modules/filesystem/FileEntry.idl\nWebCore/Modules/filesystem/FileEntrySync.idl\nWebCore/Modules/filesystem/FileSystemCallback.idl\nWebCore/Modules/filesystem/FileWriter.idl\nWebCore/Modules/filesystem/FileWriterCallback.idl\nWebCore/Modules/filesystem/FileWriterSync.idl\nWebCore/Modules/filesystem/Metadata.idl\nWebCore/Modules/filesystem/MetadataCallback.idl\nWebCore/Modules/filesystem/WorkerContextFileSystem.idl\nWebCore/Modules/geolocation/Coordinates.idl\nWebCore/Modules/geolocation/Geolocation.idl\nWebCore/Modules/geolocation/Geoposition.idl\nWebCore/Modules/geolocation/NavigatorGeolocation.idl\nWebCore/Modules/geolocation/PositionCallback.idl\nWebCore/Modules/geolocation/PositionError.idl\nWebCore/Modules/geolocation/PositionErrorCallback.idl\nWebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl\nWebCore/Modules/indexeddb/IDBAny.idl\nWebCore/Modules/indexeddb/IDBCursor.idl\nWebCore/Modules/indexeddb/IDBDatabase.idl\nWebCore/Modules/indexeddb/IDBFactory.idl\nWebCore/Modules/indexeddb/IDBIndex.idl\nWebCore/Modules/indexeddb/IDBKeyRange.idl\nWebCore/Modules/indexeddb/IDBObjectStore.idl\nWebCore/Modules/indexeddb/IDBRequest.idl\nWebCore/Modules/indexeddb/IDBTransaction.idl\nWebCore/Modules/indexeddb/IDBVersionChangeEvent.idl\nWebCore/Modules/indexeddb/WorkerContextIndexedDatabase.idl\nWebCore/Modules/mediasource/MediaSource.idl\nWebCore/Modules/mediasource/SourceBuffer.idl\nWebCore/Modules/mediasource/SourceBufferList.idl\nWebCore/Modules/notifications/DOMWindowNotifications.idl\nWebCore/Modules/notifications/Notification.idl\nWebCore/Modules/notifications/NotificationCenter.idl\nWebCore/Modules/notifications/NotificationPermissionCallback.idl\nWebCore/Modules/notifications/WorkerContextNotifications.idl\nWebCore/Modules/quota/DOMWindowQuota.idl\nWebCore/Modules/quota/NavigatorStorageQuota.idl\nWebCore/Modules/quota/StorageInfo.idl\nWebCore/Modules/quota/StorageErrorCallback.idl\nWebCore/Modules/quota/StorageQuota.idl\nWebCore/Modules/quota/StorageQuotaCallback.idl\nWebCore/Modules/quota/StorageUsageCallback.idl\nWebCore/Modules/quota/WorkerNavigatorStorageQuota.idl\nWebCore/Modules/speech/DOMWindowSpeechSynthesis.idl\nWebCore/Modules/speech/SpeechSynthesis.idl\nWebCore/Modules/speech/SpeechSynthesisEvent.idl\nWebCore/Modules/speech/SpeechSynthesisUtterance.idl\nWebCore/Modules/speech/SpeechSynthesisVoice.idl\nWebCore/Modules/webaudio/AudioBuffer.idl\nWebCore/Modules/webaudio/AudioBufferCallback.idl\nWebCore/Modules/webaudio/AudioBufferSourceNode.idl\nWebCore/Modules/webaudio/ChannelMergerNode.idl\nWebCore/Modules/webaudio/ChannelSplitterNode.idl\nWebCore/Modules/webaudio/AudioContext.idl\nWebCore/Modules/webaudio/AudioDestinationNode.idl\nWebCore/Modules/webaudio/GainNode.idl\nWebCore/Modules/webaudio/AudioListener.idl\nWebCore/Modules/webaudio/AudioNode.idl\nWebCore/Modules/webaudio/PannerNode.idl\nWebCore/Modules/webaudio/AudioParam.idl\nWebCore/Modules/webaudio/AudioProcessingEvent.idl\nWebCore/Modules/webaudio/BiquadFilterNode.idl\nWebCore/Modules/webaudio/ConvolverNode.idl\nWebCore/Modules/webaudio/DOMWindowWebAudio.idl\nWebCore/Modules/webaudio/DelayNode.idl\nWebCore/Modules/webaudio/DynamicsCompressorNode.idl\nWebCore/Modules/webaudio/ScriptProcessorNode.idl\nWebCore/Modules/webaudio/MediaElementAudioSourceNode.idl\nWebCore/Modules/webaudio/MediaStreamAudioSourceNode.idl\nWebCore/Modules/webaudio/OscillatorNode.idl\nWebCore/Modules/webaudio/OfflineAudioContext.idl\nWebCore/Modules/webaudio/OfflineAudioCompletionEvent.idl\nWebCore/Modules/webaudio/AnalyserNode.idl\nWebCore/Modules/webaudio/WaveShaperNode.idl\nWebCore/Modules/webaudio/WaveTable.idl\nWebCore/Modules/webdatabase/DOMWindowWebDatabase.idl\nWebCore/Modules/webdatabase/Database.idl\nWebCore/Modules/webdatabase/DatabaseCallback.idl\nWebCore/Modules/webdatabase/DatabaseSync.idl\nWebCore/Modules/webdatabase/SQLError.idl\nWebCore/Modules/webdatabase/SQLException.idl\nWebCore/Modules/webdatabase/SQLResultSet.idl\nWebCore/Modules/webdatabase/SQLResultSetRowList.idl\nWebCore/Modules/webdatabase/SQLStatementCallback.idl\nWebCore/Modules/webdatabase/SQLStatementErrorCallback.idl\nWebCore/Modules/webdatabase/SQLTransaction.idl\nWebCore/Modules/webdatabase/SQLTransactionCallback.idl\nWebCore/Modules/webdatabase/SQLTransactionErrorCallback.idl\nWebCore/Modules/webdatabase/SQLTransactionSync.idl\nWebCore/Modules/webdatabase/SQLTransactionSyncCallback.idl\nWebCore/Modules/webdatabase/WorkerContextWebDatabase.idl\nWebCore/Modules/websockets/CloseEvent.idl\nWebCore/Modules/websockets/DOMWindowWebSocket.idl\nWebCore/Modules/websockets/WebSocket.idl\nWebCore/Modules/websockets/WorkerContextWebSocket.idl\nWebCore/css/CSSCharsetRule.idl\nWebCore/css/CSSFontFaceLoadEvent.idl\nWebCore/css/CSSFontFaceRule.idl\nWebCore/css/CSSHostRule.idl\nWebCore/css/CSSImportRule.idl\nWebCore/css/CSSMediaRule.idl\nWebCore/css/CSSPageRule.idl\nWebCore/css/CSSPrimitiveValue.idl\nWebCore/css/CSSRule.idl\nWebCore/css/CSSRuleList.idl\nWebCore/css/CSSStyleDeclaration.idl\nWebCore/css/CSSStyleRule.idl\nWebCore/css/CSSStyleSheet.idl\nWebCore/css/CSSSupportsRule.idl\nWebCore/css/CSSUnknownRule.idl\nWebCore/css/CSSValue.idl\nWebCore/css/CSSValueList.idl\nWebCore/css/Counter.idl\nWebCore/css/DOMWindowCSS.idl\nWebCore/css/FontLoader.idl\nWebCore/css/MediaList.idl\nWebCore/css/MediaQueryList.idl\nWebCore/css/MediaQueryListListener.idl\nWebCore/css/RGBColor.idl\nWebCore/css/Rect.idl\nWebCore/css/StyleMedia.idl\nWebCore/css/StyleSheet.idl\nWebCore/css/StyleSheetList.idl\nWebCore/css/WebKitCSSFilterValue.idl\nWebCore/css/WebKitCSSFilterRule.idl\nWebCore/css/WebKitCSSKeyframeRule.idl\nWebCore/css/WebKitCSSKeyframesRule.idl\nWebCore/css/WebKitCSSMatrix.idl\nWebCore/css/WebKitCSSMixFunctionValue.idl\nWebCore/css/WebKitCSSRegionRule.idl\nWebCore/css/WebKitCSSTransformValue.idl\nWebCore/css/WebKitCSSViewportRule.idl\nWebCore/dom/Attr.idl\nWebCore/dom/BeforeLoadEvent.idl\nWebCore/dom/CDATASection.idl\nWebCore/dom/CharacterData.idl\nWebCore/dom/ClientRect.idl\nWebCore/dom/ClientRectList.idl\nWebCore/dom/Clipboard.idl\nWebCore/dom/Comment.idl\nWebCore/dom/CompositionEvent.idl\nWebCore/dom/CustomElementConstructor.idl\nWebCore/dom/CustomEvent.idl\nWebCore/dom/DOMCoreException.idl\nWebCore/dom/DOMError.idl\nWebCore/dom/DOMImplementation.idl\nWebCore/dom/DOMStringList.idl\nWebCore/dom/DOMStringMap.idl\nWebCore/dom/DataTransferItem.idl\nWebCore/dom/DataTransferItemList.idl\nWebCore/dom/DeviceMotionEvent.idl\nWebCore/dom/DeviceOrientationEvent.idl\nWebCore/dom/Document.idl\nWebCore/dom/DocumentFragment.idl\nWebCore/dom/DocumentType.idl\nWebCore/dom/Element.idl\nWebCore/dom/Entity.idl\nWebCore/dom/EntityReference.idl\nWebCore/dom/ErrorEvent.idl\nWebCore/dom/Event.idl\nWebCore/dom/EventException.idl\nWebCore/dom/EventListener.idl\nWebCore/dom/EventTarget.idl\nWebCore/dom/FocusEvent.idl\nWebCore/dom/HashChangeEvent.idl\nWebCore/dom/KeyboardEvent.idl\nWebCore/dom/MessageChannel.idl\nWebCore/dom/MessageEvent.idl\nWebCore/dom/MessagePort.idl\nWebCore/dom/MouseEvent.idl\nWebCore/dom/MutationEvent.idl\nWebCore/dom/MutationObserver.idl\nWebCore/dom/MutationRecord.idl\nWebCore/dom/DOMNamedFlowCollection.idl\nWebCore/dom/NamedNodeMap.idl\nWebCore/dom/Node.idl\nWebCore/dom/NodeFilter.idl\nWebCore/dom/NodeIterator.idl\nWebCore/dom/NodeList.idl\nWebCore/dom/Notation.idl\nWebCore/dom/OverflowEvent.idl\nWebCore/dom/PageTransitionEvent.idl\nWebCore/dom/PopStateEvent.idl\nWebCore/dom/ProcessingInstruction.idl\nWebCore/dom/ProgressEvent.idl\nWebCore/dom/ProgressEvent.idl\nWebCore/dom/PropertyNodeList.idl\nWebCore/dom/Range.idl\nWebCore/dom/RangeException.idl\nWebCore/dom/RequestAnimationFrameCallback.idl\nWebCore/dom/ShadowRoot.idl\nWebCore/dom/StringCallback.idl\nWebCore/dom/Text.idl\nWebCore/dom/TextEvent.idl\nWebCore/dom/Touch.idl\nWebCore/dom/TouchEvent.idl\nWebCore/dom/TouchList.idl\nWebCore/dom/TransitionEvent.idl\nWebCore/dom/TreeWalker.idl\nWebCore/dom/UIEvent.idl\nWebCore/dom/WebKitAnimationEvent.idl\nWebCore/dom/WebKitNamedFlow.idl\nWebCore/dom/WebKitTransitionEvent.idl\nWebCore/dom/WheelEvent.idl\nWebCore/fileapi/Blob.idl\nWebCore/fileapi/File.idl\nWebCore/fileapi/FileError.idl\nWebCore/fileapi/FileException.idl\nWebCore/fileapi/FileList.idl\nWebCore/fileapi/FileReader.idl\nWebCore/fileapi/FileReaderSync.idl\nWebCore/html/DOMFormData.idl\nWebCore/html/DOMSettableTokenList.idl\nWebCore/html/DOMTokenList.idl\nWebCore/html/DOMURL.idl\nWebCore/html/HTMLAllCollection.idl\nWebCore/html/HTMLAnchorElement.idl\nWebCore/html/HTMLAppletElement.idl\nWebCore/html/HTMLAreaElement.idl\nWebCore/html/HTMLAudioElement.idl\nWebCore/html/HTMLBRElement.idl\nWebCore/html/HTMLBaseElement.idl\nWebCore/html/HTMLBaseFontElement.idl\nWebCore/html/HTMLBodyElement.idl\nWebCore/html/HTMLButtonElement.idl\nWebCore/html/HTMLCanvasElement.idl\nWebCore/html/HTMLCollection.idl\nWebCore/html/HTMLDListElement.idl\nWebCore/html/HTMLDataListElement.idl\nWebCore/html/HTMLDetailsElement.idl\nWebCore/html/HTMLDialogElement.idl\nWebCore/html/HTMLDirectoryElement.idl\nWebCore/html/HTMLDivElement.idl\nWebCore/html/HTMLDocument.idl\nWebCore/html/HTMLElement.idl\nWebCore/html/HTMLEmbedElement.idl\nWebCore/html/HTMLFieldSetElement.idl\nWebCore/html/HTMLFontElement.idl\nWebCore/html/HTMLFormControlsCollection.idl\nWebCore/html/HTMLFormElement.idl\nWebCore/html/HTMLFrameElement.idl\nWebCore/html/HTMLFrameSetElement.idl\nWebCore/html/HTMLHRElement.idl\nWebCore/html/HTMLHeadElement.idl\nWebCore/html/HTMLHeadingElement.idl\nWebCore/html/HTMLHtmlElement.idl\nWebCore/html/HTMLIFrameElement.idl\nWebCore/html/HTMLImageElement.idl\nWebCore/html/HTMLInputElement.idl\nWebCore/html/HTMLKeygenElement.idl\nWebCore/html/HTMLLIElement.idl\nWebCore/html/HTMLLabelElement.idl\nWebCore/html/HTMLLegendElement.idl\nWebCore/html/HTMLLinkElement.idl\nWebCore/html/HTMLMapElement.idl\nWebCore/html/HTMLMarqueeElement.idl\nWebCore/html/HTMLMediaElement.idl\nWebCore/html/HTMLMenuElement.idl\nWebCore/html/HTMLMetaElement.idl\nWebCore/html/HTMLMeterElement.idl\nWebCore/html/HTMLModElement.idl\nWebCore/html/HTMLOListElement.idl\nWebCore/html/HTMLObjectElement.idl\nWebCore/html/HTMLOptGroupElement.idl\nWebCore/html/HTMLOptionElement.idl\nWebCore/html/HTMLOptionsCollection.idl\nWebCore/html/HTMLOutputElement.idl\nWebCore/html/HTMLParagraphElement.idl\nWebCore/html/HTMLParamElement.idl\nWebCore/html/HTMLPreElement.idl\nWebCore/html/HTMLProgressElement.idl\nWebCore/html/HTMLPropertiesCollection.idl\nWebCore/html/HTMLQuoteElement.idl\nWebCore/html/HTMLScriptElement.idl\nWebCore/html/HTMLSelectElement.idl\nWebCore/html/HTMLSourceElement.idl\nWebCore/html/HTMLSpanElement.idl\nWebCore/html/HTMLStyleElement.idl\nWebCore/html/HTMLTableCaptionElement.idl\nWebCore/html/HTMLTableCellElement.idl\nWebCore/html/HTMLTableColElement.idl\nWebCore/html/HTMLTableElement.idl\nWebCore/html/HTMLTableRowElement.idl\nWebCore/html/HTMLTableSectionElement.idl\nWebCore/html/HTMLTemplateElement.idl\nWebCore/html/HTMLTextAreaElement.idl\nWebCore/html/HTMLTitleElement.idl\nWebCore/html/HTMLTrackElement.idl\nWebCore/html/HTMLUListElement.idl\nWebCore/html/HTMLUnknownElement.idl\nWebCore/html/HTMLVideoElement.idl\nWebCore/html/ImageData.idl\nWebCore/html/MediaController.idl\nWebCore/html/MediaError.idl\nWebCore/html/MediaKeyError.idl\nWebCore/html/MediaKeyEvent.idl\nWebCore/html/MicroDataItemValue.idl\nWebCore/html/RadioNodeList.idl\nWebCore/html/TextMetrics.idl\nWebCore/html/TimeRanges.idl\nWebCore/html/ValidityState.idl\nWebCore/html/VoidCallback.idl\nWebCore/html/canvas/ArrayBuffer.idl\nWebCore/html/canvas/ArrayBufferView.idl\nWebCore/html/canvas/CanvasGradient.idl\nWebCore/html/canvas/CanvasPattern.idl\nWebCore/html/canvas/CanvasProxy.idl\nWebCore/html/canvas/CanvasRenderingContext.idl\nWebCore/html/canvas/CanvasRenderingContext2D.idl\nWebCore/html/canvas/DataView.idl\nWebCore/html/canvas/DOMPath.idl\nWebCore/html/canvas/EXTDrawBuffers.idl\nWebCore/html/canvas/EXTTextureFilterAnisotropic.idl\nWebCore/html/canvas/Float32Array.idl\nWebCore/html/canvas/Float64Array.idl\nWebCore/html/canvas/Int16Array.idl\nWebCore/html/canvas/Int32Array.idl\nWebCore/html/canvas/Int8Array.idl\nWebCore/html/canvas/OESElementIndexUint.idl\nWebCore/html/canvas/OESStandardDerivatives.idl\nWebCore/html/canvas/OESTextureFloat.idl\nWebCore/html/canvas/OESTextureHalfFloat.idl\nWebCore/html/canvas/OESVertexArrayObject.idl\nWebCore/html/canvas/Uint16Array.idl\nWebCore/html/canvas/Uint32Array.idl\nWebCore/html/canvas/Uint8Array.idl\nWebCore/html/canvas/Uint8ClampedArray.idl\nWebCore/html/canvas/WebGLActiveInfo.idl\nWebCore/html/canvas/WebGLBuffer.idl\nWebCore/html/canvas/WebGLCompressedTextureATC.idl\nWebCore/html/canvas/WebGLCompressedTexturePVRTC.idl\nWebCore/html/canvas/WebGLCompressedTextureS3TC.idl\nWebCore/html/canvas/WebGLContextAttributes.idl\nWebCore/html/canvas/WebGLContextEvent.idl\nWebCore/html/canvas/WebGLDepthTexture.idl\nWebCore/html/canvas/WebGLFramebuffer.idl\nWebCore/html/canvas/WebGLLoseContext.idl\nWebCore/html/canvas/WebGLProgram.idl\nWebCore/html/canvas/WebGLRenderbuffer.idl\nWebCore/html/canvas/WebGLRenderingContext.idl\nWebCore/html/canvas/WebGLShader.idl\nWebCore/html/canvas/WebGLShaderPrecisionFormat.idl\nWebCore/html/canvas/WebGLTexture.idl\nWebCore/html/canvas/WebGLUniformLocation.idl\nWebCore/html/canvas/WebGLVertexArrayObjectOES.idl\nWebCore/html/shadow/HTMLContentElement.idl\nWebCore/html/shadow/HTMLShadowElement.idl\nWebCore/html/track/TextTrack.idl\nWebCore/html/track/TextTrackCue.idl\nWebCore/html/track/TextTrackCueList.idl\nWebCore/html/track/TextTrackList.idl\nWebCore/html/track/TrackEvent.idl\nWebCore/inspector/InjectedScriptHost.idl\nWebCore/inspector/InspectorFrontendHost.idl\nWebCore/inspector/ScriptProfile.idl\nWebCore/inspector/ScriptProfileNode.idl\nWebCore/loader/appcache/DOMApplicationCache.idl\nWebCore/page/AbstractView.idl\nWebCore/page/BarInfo.idl\nWebCore/page/Console.idl\nWebCore/page/Crypto.idl\nWebCore/page/DOMSecurityPolicy.idl\nWebCore/page/DOMSelection.idl\nWebCore/page/DOMWindow.idl\nWebCore/page/EventSource.idl\nWebCore/page/History.idl\nWebCore/page/Location.idl\nWebCore/page/MemoryInfo.idl\nWebCore/page/Navigator.idl\nWebCore/page/Performance.idl\nWebCore/page/PerformanceNavigation.idl\nWebCore/page/PerformanceTiming.idl\nWebCore/page/Screen.idl\nWebCore/page/SpeechInputEvent.idl\nWebCore/page/SpeechInputResult.idl\nWebCore/page/SpeechInputResultList.idl\nWebCore/page/WebKitPoint.idl\nWebCore/page/WorkerNavigator.idl\nWebCore/plugins/DOMMimeType.idl\nWebCore/plugins/DOMMimeTypeArray.idl\nWebCore/plugins/DOMPlugin.idl\nWebCore/plugins/DOMPluginArray.idl\nWebCore/storage/Storage.idl\nWebCore/storage/StorageEvent.idl\nWebCore/svg/ElementTimeControl.idl\nWebCore/svg/SVGAElement.idl\nWebCore/svg/SVGAltGlyphDefElement.idl\nWebCore/svg/SVGAltGlyphElement.idl\nWebCore/svg/SVGAltGlyphItemElement.idl\nWebCore/svg/SVGAngle.idl\nWebCore/svg/SVGAnimateColorElement.idl\nWebCore/svg/SVGAnimateElement.idl\nWebCore/svg/SVGAnimateMotionElement.idl\nWebCore/svg/SVGAnimateTransformElement.idl\nWebCore/svg/SVGAnimatedAngle.idl\nWebCore/svg/SVGAnimatedBoolean.idl\nWebCore/svg/SVGAnimatedEnumeration.idl\nWebCore/svg/SVGAnimatedInteger.idl\nWebCore/svg/SVGAnimatedLength.idl\nWebCore/svg/SVGAnimatedLengthList.idl\nWebCore/svg/SVGAnimatedNumber.idl\nWebCore/svg/SVGAnimatedNumberList.idl\nWebCore/svg/SVGAnimatedPreserveAspectRatio.idl\nWebCore/svg/SVGAnimatedRect.idl\nWebCore/svg/SVGAnimatedString.idl\nWebCore/svg/SVGAnimatedTransformList.idl\nWebCore/svg/SVGAnimationElement.idl\nWebCore/svg/SVGCircleElement.idl\nWebCore/svg/SVGClipPathElement.idl\nWebCore/svg/SVGColor.idl\nWebCore/svg/SVGComponentTransferFunctionElement.idl\nWebCore/svg/SVGCursorElement.idl\nWebCore/svg/SVGDefsElement.idl\nWebCore/svg/SVGDescElement.idl\nWebCore/svg/SVGDocument.idl\nWebCore/svg/SVGElement.idl\nWebCore/svg/SVGElementInstance.idl\nWebCore/svg/SVGElementInstanceList.idl\nWebCore/svg/SVGEllipseElement.idl\nWebCore/svg/SVGException.idl\nWebCore/svg/SVGExternalResourcesRequired.idl\nWebCore/svg/SVGFEBlendElement.idl\nWebCore/svg/SVGFEColorMatrixElement.idl\nWebCore/svg/SVGFEComponentTransferElement.idl\nWebCore/svg/SVGFECompositeElement.idl\nWebCore/svg/SVGFEConvolveMatrixElement.idl\nWebCore/svg/SVGFEDiffuseLightingElement.idl\nWebCore/svg/SVGFEDisplacementMapElement.idl\nWebCore/svg/SVGFEDistantLightElement.idl\nWebCore/svg/SVGFEDropShadowElement.idl\nWebCore/svg/SVGFEFloodElement.idl\nWebCore/svg/SVGFEFuncAElement.idl\nWebCore/svg/SVGFEFuncBElement.idl\nWebCore/svg/SVGFEFuncGElement.idl\nWebCore/svg/SVGFEFuncRElement.idl\nWebCore/svg/SVGFEGaussianBlurElement.idl\nWebCore/svg/SVGFEImageElement.idl\nWebCore/svg/SVGFEMergeElement.idl\nWebCore/svg/SVGFEMergeNodeElement.idl\nWebCore/svg/SVGFEMorphologyElement.idl\nWebCore/svg/SVGFEOffsetElement.idl\nWebCore/svg/SVGFEPointLightElement.idl\nWebCore/svg/SVGFESpecularLightingElement.idl\nWebCore/svg/SVGFESpotLightElement.idl\nWebCore/svg/SVGFETileElement.idl\nWebCore/svg/SVGFETurbulenceElement.idl\nWebCore/svg/SVGFilterElement.idl\nWebCore/svg/SVGFilterPrimitiveStandardAttributes.idl\nWebCore/svg/SVGFitToViewBox.idl\nWebCore/svg/SVGFontElement.idl\nWebCore/svg/SVGFontFaceElement.idl\nWebCore/svg/SVGFontFaceFormatElement.idl\nWebCore/svg/SVGFontFaceNameElement.idl\nWebCore/svg/SVGFontFaceSrcElement.idl\nWebCore/svg/SVGFontFaceUriElement.idl\nWebCore/svg/SVGForeignObjectElement.idl\nWebCore/svg/SVGGElement.idl\nWebCore/svg/SVGGlyphElement.idl\nWebCore/svg/SVGGlyphRefElement.idl\nWebCore/svg/SVGGradientElement.idl\nWebCore/svg/SVGHKernElement.idl\nWebCore/svg/SVGImageElement.idl\nWebCore/svg/SVGLangSpace.idl\nWebCore/svg/SVGLength.idl\nWebCore/svg/SVGLengthList.idl\nWebCore/svg/SVGLineElement.idl\nWebCore/svg/SVGLinearGradientElement.idl\nWebCore/svg/SVGLocatable.idl\nWebCore/svg/SVGMPathElement.idl\nWebCore/svg/SVGMarkerElement.idl\nWebCore/svg/SVGMaskElement.idl\nWebCore/svg/SVGMatrix.idl\nWebCore/svg/SVGMetadataElement.idl\nWebCore/svg/SVGMissingGlyphElement.idl\nWebCore/svg/SVGNumber.idl\nWebCore/svg/SVGNumberList.idl\nWebCore/svg/SVGPaint.idl\nWebCore/svg/SVGPathElement.idl\nWebCore/svg/SVGPathSeg.idl\nWebCore/svg/SVGPathSegArcAbs.idl\nWebCore/svg/SVGPathSegArcRel.idl\nWebCore/svg/SVGPathSegClosePath.idl\nWebCore/svg/SVGPathSegCurvetoCubicAbs.idl\nWebCore/svg/SVGPathSegCurvetoCubicRel.idl\nWebCore/svg/SVGPathSegCurvetoCubicSmoothAbs.idl\nWebCore/svg/SVGPathSegCurvetoCubicSmoothRel.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticRel.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticSmoothAbs.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticSmoothRel.idl\nWebCore/svg/SVGPathSegLinetoAbs.idl\nWebCore/svg/SVGPathSegLinetoHorizontalAbs.idl\nWebCore/svg/SVGPathSegLinetoHorizontalRel.idl\nWebCore/svg/SVGPathSegLinetoRel.idl\nWebCore/svg/SVGPathSegLinetoVerticalAbs.idl\nWebCore/svg/SVGPathSegLinetoVerticalRel.idl\nWebCore/svg/SVGPathSegList.idl\nWebCore/svg/SVGPathSegMovetoAbs.idl\nWebCore/svg/SVGPathSegMovetoRel.idl\nWebCore/svg/SVGPatternElement.idl\nWebCore/svg/SVGPoint.idl\nWebCore/svg/SVGPointList.idl\nWebCore/svg/SVGPolygonElement.idl\nWebCore/svg/SVGPolylineElement.idl\nWebCore/svg/SVGPreserveAspectRatio.idl\nWebCore/svg/SVGRadialGradientElement.idl\nWebCore/svg/SVGRect.idl\nWebCore/svg/SVGRectElement.idl\nWebCore/svg/SVGRenderingIntent.idl\nWebCore/svg/SVGSVGElement.idl\nWebCore/svg/SVGScriptElement.idl\nWebCore/svg/SVGSetElement.idl\nWebCore/svg/SVGStopElement.idl\nWebCore/svg/SVGStringList.idl\nWebCore/svg/SVGStyleElement.idl\nWebCore/svg/SVGStyledElement.idl\nWebCore/svg/SVGSwitchElement.idl\nWebCore/svg/SVGSymbolElement.idl\nWebCore/svg/SVGTRefElement.idl\nWebCore/svg/SVGTSpanElement.idl\nWebCore/svg/SVGTests.idl\nWebCore/svg/SVGTextContentElement.idl\nWebCore/svg/SVGTextElement.idl\nWebCore/svg/SVGTextPathElement.idl\nWebCore/svg/SVGTextPositioningElement.idl\nWebCore/svg/SVGTitleElement.idl\nWebCore/svg/SVGTransform.idl\nWebCore/svg/SVGTransformList.idl\nWebCore/svg/SVGTransformable.idl\nWebCore/svg/SVGURIReference.idl\nWebCore/svg/SVGUnitTypes.idl\nWebCore/svg/SVGUseElement.idl\nWebCore/svg/SVGVKernElement.idl\nWebCore/svg/SVGViewElement.idl\nWebCore/svg/SVGViewSpec.idl\nWebCore/svg/SVGZoomAndPan.idl\nWebCore/svg/SVGZoomEvent.idl\nWebCore/testing/Internals.idl\nWebCore/testing/InternalSettings.idl\nWebCore/testing/MallocStatistics.idl\nWebCore/testing/TypeConversions.idl\nWebCore/workers/AbstractWorker.idl\nWebCore/workers/DedicatedWorkerContext.idl\nWebCore/workers/SharedWorker.idl\nWebCore/workers/SharedWorkerContext.idl\nWebCore/workers/Worker.idl\nWebCore/workers/WorkerContext.idl\nWebCore/workers/WorkerLocation.idl\nWebCore/xml/DOMParser.idl\nWebCore/xml/XMLHttpRequest.idl\nWebCore/xml/XMLHttpRequestException.idl\nWebCore/xml/XMLHttpRequestProgressEvent.idl\nWebCore/xml/XMLHttpRequestUpload.idl\nWebCore/xml/XMLSerializer.idl\nWebCore/xml/XPathEvaluator.idl\nWebCore/xml/XPathException.idl\nWebCore/xml/XPathExpression.idl\nWebCore/xml/XPathNSResolver.idl\nWebCore/xml/XPathResult.idl\nWebCore/xml/XSLTProcessor.idl\nInternalSettingsGenerated.idl\nWebCore/inspector/JavaScriptCallFrame.idl\n" > ./idl_files.tmp
     59printf "WebCore/Modules/encryptedmedia/MediaKeyMessageEvent.idl\nWebCore/Modules/encryptedmedia/MediaKeyNeededEvent.idl\nWebCore/Modules/encryptedmedia/MediaKeySession.idl\nWebCore/Modules/encryptedmedia/MediaKeys.idl\nWebCore/Modules/filesystem/DOMFileSystem.idl\nWebCore/Modules/filesystem/DOMFileSystemSync.idl\nWebCore/Modules/filesystem/DOMWindowFileSystem.idl\nWebCore/Modules/filesystem/DirectoryEntry.idl\nWebCore/Modules/filesystem/DirectoryEntrySync.idl\nWebCore/Modules/filesystem/DirectoryReader.idl\nWebCore/Modules/filesystem/DirectoryReaderSync.idl\nWebCore/Modules/filesystem/EntriesCallback.idl\nWebCore/Modules/filesystem/Entry.idl\nWebCore/Modules/filesystem/EntryArray.idl\nWebCore/Modules/filesystem/EntryArraySync.idl\nWebCore/Modules/filesystem/EntryCallback.idl\nWebCore/Modules/filesystem/EntrySync.idl\nWebCore/Modules/filesystem/ErrorCallback.idl\nWebCore/Modules/filesystem/FileCallback.idl\nWebCore/Modules/filesystem/FileEntry.idl\nWebCore/Modules/filesystem/FileEntrySync.idl\nWebCore/Modules/filesystem/FileSystemCallback.idl\nWebCore/Modules/filesystem/FileWriter.idl\nWebCore/Modules/filesystem/FileWriterCallback.idl\nWebCore/Modules/filesystem/FileWriterSync.idl\nWebCore/Modules/filesystem/Metadata.idl\nWebCore/Modules/filesystem/MetadataCallback.idl\nWebCore/Modules/filesystem/WorkerContextFileSystem.idl\nWebCore/Modules/geolocation/Coordinates.idl\nWebCore/Modules/geolocation/Geolocation.idl\nWebCore/Modules/geolocation/Geoposition.idl\nWebCore/Modules/geolocation/NavigatorGeolocation.idl\nWebCore/Modules/geolocation/PositionCallback.idl\nWebCore/Modules/geolocation/PositionError.idl\nWebCore/Modules/geolocation/PositionErrorCallback.idl\nWebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl\nWebCore/Modules/indexeddb/IDBAny.idl\nWebCore/Modules/indexeddb/IDBCursor.idl\nWebCore/Modules/indexeddb/IDBDatabase.idl\nWebCore/Modules/indexeddb/IDBFactory.idl\nWebCore/Modules/indexeddb/IDBIndex.idl\nWebCore/Modules/indexeddb/IDBKeyRange.idl\nWebCore/Modules/indexeddb/IDBObjectStore.idl\nWebCore/Modules/indexeddb/IDBRequest.idl\nWebCore/Modules/indexeddb/IDBTransaction.idl\nWebCore/Modules/indexeddb/IDBVersionChangeEvent.idl\nWebCore/Modules/indexeddb/WorkerContextIndexedDatabase.idl\nWebCore/Modules/mediasource/MediaSource.idl\nWebCore/Modules/mediasource/SourceBuffer.idl\nWebCore/Modules/mediasource/SourceBufferList.idl\nWebCore/Modules/notifications/DOMWindowNotifications.idl\nWebCore/Modules/notifications/Notification.idl\nWebCore/Modules/notifications/NotificationCenter.idl\nWebCore/Modules/notifications/NotificationPermissionCallback.idl\nWebCore/Modules/notifications/WorkerContextNotifications.idl\nWebCore/Modules/quota/DOMWindowQuota.idl\nWebCore/Modules/quota/NavigatorStorageQuota.idl\nWebCore/Modules/quota/StorageInfo.idl\nWebCore/Modules/quota/StorageErrorCallback.idl\nWebCore/Modules/quota/StorageQuota.idl\nWebCore/Modules/quota/StorageQuotaCallback.idl\nWebCore/Modules/quota/StorageUsageCallback.idl\nWebCore/Modules/quota/WorkerNavigatorStorageQuota.idl\nWebCore/Modules/speech/DOMWindowSpeechSynthesis.idl\nWebCore/Modules/speech/SpeechSynthesis.idl\nWebCore/Modules/speech/SpeechSynthesisEvent.idl\nWebCore/Modules/speech/SpeechSynthesisUtterance.idl\nWebCore/Modules/speech/SpeechSynthesisVoice.idl\nWebCore/Modules/webaudio/AudioBuffer.idl\nWebCore/Modules/webaudio/AudioBufferCallback.idl\nWebCore/Modules/webaudio/AudioBufferSourceNode.idl\nWebCore/Modules/webaudio/ChannelMergerNode.idl\nWebCore/Modules/webaudio/ChannelSplitterNode.idl\nWebCore/Modules/webaudio/AudioContext.idl\nWebCore/Modules/webaudio/AudioDestinationNode.idl\nWebCore/Modules/webaudio/GainNode.idl\nWebCore/Modules/webaudio/AudioListener.idl\nWebCore/Modules/webaudio/AudioNode.idl\nWebCore/Modules/webaudio/PannerNode.idl\nWebCore/Modules/webaudio/AudioParam.idl\nWebCore/Modules/webaudio/AudioProcessingEvent.idl\nWebCore/Modules/webaudio/BiquadFilterNode.idl\nWebCore/Modules/webaudio/ConvolverNode.idl\nWebCore/Modules/webaudio/DOMWindowWebAudio.idl\nWebCore/Modules/webaudio/DelayNode.idl\nWebCore/Modules/webaudio/DynamicsCompressorNode.idl\nWebCore/Modules/webaudio/ScriptProcessorNode.idl\nWebCore/Modules/webaudio/MediaElementAudioSourceNode.idl\nWebCore/Modules/webaudio/MediaStreamAudioSourceNode.idl\nWebCore/Modules/webaudio/OscillatorNode.idl\nWebCore/Modules/webaudio/OfflineAudioContext.idl\nWebCore/Modules/webaudio/OfflineAudioCompletionEvent.idl\nWebCore/Modules/webaudio/AnalyserNode.idl\nWebCore/Modules/webaudio/WaveShaperNode.idl\nWebCore/Modules/webaudio/WaveTable.idl\nWebCore/Modules/webdatabase/DOMWindowWebDatabase.idl\nWebCore/Modules/webdatabase/Database.idl\nWebCore/Modules/webdatabase/DatabaseCallback.idl\nWebCore/Modules/webdatabase/DatabaseSync.idl\nWebCore/Modules/webdatabase/SQLError.idl\nWebCore/Modules/webdatabase/SQLException.idl\nWebCore/Modules/webdatabase/SQLResultSet.idl\nWebCore/Modules/webdatabase/SQLResultSetRowList.idl\nWebCore/Modules/webdatabase/SQLStatementCallback.idl\nWebCore/Modules/webdatabase/SQLStatementErrorCallback.idl\nWebCore/Modules/webdatabase/SQLTransaction.idl\nWebCore/Modules/webdatabase/SQLTransactionCallback.idl\nWebCore/Modules/webdatabase/SQLTransactionErrorCallback.idl\nWebCore/Modules/webdatabase/SQLTransactionSync.idl\nWebCore/Modules/webdatabase/SQLTransactionSyncCallback.idl\nWebCore/Modules/webdatabase/WorkerContextWebDatabase.idl\nWebCore/Modules/websockets/CloseEvent.idl\nWebCore/Modules/websockets/DOMWindowWebSocket.idl\nWebCore/Modules/websockets/WebSocket.idl\nWebCore/Modules/websockets/WorkerContextWebSocket.idl\nWebCore/css/CSSCharsetRule.idl\nWebCore/css/CSSFontFaceLoadEvent.idl\nWebCore/css/CSSFontFaceRule.idl\nWebCore/css/CSSHostRule.idl\nWebCore/css/CSSImportRule.idl\nWebCore/css/CSSMediaRule.idl\nWebCore/css/CSSPageRule.idl\nWebCore/css/CSSPrimitiveValue.idl\nWebCore/css/CSSRule.idl\nWebCore/css/CSSRuleList.idl\nWebCore/css/CSSStyleDeclaration.idl\nWebCore/css/CSSStyleRule.idl\nWebCore/css/CSSStyleSheet.idl\nWebCore/css/CSSSupportsRule.idl\nWebCore/css/CSSUnknownRule.idl\nWebCore/css/CSSValue.idl\nWebCore/css/CSSValueList.idl\nWebCore/css/Counter.idl\nWebCore/css/DOMWindowCSS.idl\nWebCore/css/FontLoader.idl\nWebCore/css/MediaList.idl\nWebCore/css/MediaQueryList.idl\nWebCore/css/MediaQueryListListener.idl\nWebCore/css/RGBColor.idl\nWebCore/css/Rect.idl\nWebCore/css/StyleMedia.idl\nWebCore/css/StyleSheet.idl\nWebCore/css/StyleSheetList.idl\nWebCore/css/WebKitCSSFilterValue.idl\nWebCore/css/WebKitCSSFilterRule.idl\nWebCore/css/WebKitCSSKeyframeRule.idl\nWebCore/css/WebKitCSSKeyframesRule.idl\nWebCore/css/WebKitCSSMatrix.idl\nWebCore/css/WebKitCSSMixFunctionValue.idl\nWebCore/css/WebKitCSSRegionRule.idl\nWebCore/css/WebKitCSSTransformValue.idl\nWebCore/css/WebKitCSSViewportRule.idl\nWebCore/dom/Attr.idl\nWebCore/dom/BeforeLoadEvent.idl\nWebCore/dom/CDATASection.idl\nWebCore/dom/CharacterData.idl\nWebCore/dom/ClientRect.idl\nWebCore/dom/ClientRectList.idl\nWebCore/dom/Clipboard.idl\nWebCore/dom/Comment.idl\nWebCore/dom/CompositionEvent.idl\nWebCore/dom/CustomElementConstructor.idl\nWebCore/dom/CustomEvent.idl\nWebCore/dom/DOMCoreException.idl\nWebCore/dom/DOMError.idl\nWebCore/dom/DOMImplementation.idl\nWebCore/dom/DOMStringList.idl\nWebCore/dom/DOMStringMap.idl\nWebCore/dom/DataTransferItem.idl\nWebCore/dom/DataTransferItemList.idl\nWebCore/dom/DeviceMotionEvent.idl\nWebCore/dom/DeviceOrientationEvent.idl\nWebCore/dom/Document.idl\nWebCore/dom/DocumentFragment.idl\nWebCore/dom/DocumentType.idl\nWebCore/dom/Element.idl\nWebCore/dom/Entity.idl\nWebCore/dom/EntityReference.idl\nWebCore/dom/ErrorEvent.idl\nWebCore/dom/Event.idl\nWebCore/dom/EventException.idl\nWebCore/dom/EventListener.idl\nWebCore/dom/EventTarget.idl\nWebCore/dom/FocusEvent.idl\nWebCore/dom/HashChangeEvent.idl\nWebCore/dom/KeyboardEvent.idl\nWebCore/dom/MessageChannel.idl\nWebCore/dom/MessageEvent.idl\nWebCore/dom/MessagePort.idl\nWebCore/dom/MouseEvent.idl\nWebCore/dom/MutationEvent.idl\nWebCore/dom/MutationObserver.idl\nWebCore/dom/MutationRecord.idl\nWebCore/dom/DOMNamedFlowCollection.idl\nWebCore/dom/NamedNodeMap.idl\nWebCore/dom/Node.idl\nWebCore/dom/NodeFilter.idl\nWebCore/dom/NodeIterator.idl\nWebCore/dom/NodeList.idl\nWebCore/dom/Notation.idl\nWebCore/dom/OverflowEvent.idl\nWebCore/dom/PageTransitionEvent.idl\nWebCore/dom/PopStateEvent.idl\nWebCore/dom/ProcessingInstruction.idl\nWebCore/dom/ProgressEvent.idl\nWebCore/dom/ProgressEvent.idl\nWebCore/dom/PropertyNodeList.idl\nWebCore/dom/Range.idl\nWebCore/dom/RangeException.idl\nWebCore/dom/RequestAnimationFrameCallback.idl\nWebCore/dom/ShadowRoot.idl\nWebCore/dom/StringCallback.idl\nWebCore/dom/Text.idl\nWebCore/dom/TextEvent.idl\nWebCore/dom/Touch.idl\nWebCore/dom/TouchEvent.idl\nWebCore/dom/TouchList.idl\nWebCore/dom/TransitionEvent.idl\nWebCore/dom/TreeWalker.idl\nWebCore/dom/UIEvent.idl\nWebCore/dom/WebKitAnimationEvent.idl\nWebCore/dom/WebKitNamedFlow.idl\nWebCore/dom/WebKitTransitionEvent.idl\nWebCore/dom/WheelEvent.idl\nWebCore/fileapi/Blob.idl\nWebCore/fileapi/File.idl\nWebCore/fileapi/FileError.idl\nWebCore/fileapi/FileException.idl\nWebCore/fileapi/FileList.idl\nWebCore/fileapi/FileReader.idl\nWebCore/fileapi/FileReaderSync.idl\nWebCore/html/DOMFormData.idl\nWebCore/html/DOMSettableTokenList.idl\nWebCore/html/DOMTokenList.idl\nWebCore/html/DOMURL.idl\nWebCore/html/HTMLAllCollection.idl\nWebCore/html/HTMLAnchorElement.idl\nWebCore/html/HTMLAppletElement.idl\nWebCore/html/HTMLAreaElement.idl\nWebCore/html/HTMLAudioElement.idl\nWebCore/html/HTMLBRElement.idl\nWebCore/html/HTMLBaseElement.idl\nWebCore/html/HTMLBaseFontElement.idl\nWebCore/html/HTMLBodyElement.idl\nWebCore/html/HTMLButtonElement.idl\nWebCore/html/HTMLCanvasElement.idl\nWebCore/html/HTMLCollection.idl\nWebCore/html/HTMLDListElement.idl\nWebCore/html/HTMLDataListElement.idl\nWebCore/html/HTMLDetailsElement.idl\nWebCore/html/HTMLDialogElement.idl\nWebCore/html/HTMLDirectoryElement.idl\nWebCore/html/HTMLDivElement.idl\nWebCore/html/HTMLDocument.idl\nWebCore/html/HTMLElement.idl\nWebCore/html/HTMLEmbedElement.idl\nWebCore/html/HTMLFieldSetElement.idl\nWebCore/html/HTMLFontElement.idl\nWebCore/html/HTMLFormControlsCollection.idl\nWebCore/html/HTMLFormElement.idl\nWebCore/html/HTMLFrameElement.idl\nWebCore/html/HTMLFrameSetElement.idl\nWebCore/html/HTMLHRElement.idl\nWebCore/html/HTMLHeadElement.idl\nWebCore/html/HTMLHeadingElement.idl\nWebCore/html/HTMLHtmlElement.idl\nWebCore/html/HTMLIFrameElement.idl\nWebCore/html/HTMLImageElement.idl\nWebCore/html/HTMLInputElement.idl\nWebCore/html/HTMLKeygenElement.idl\nWebCore/html/HTMLLIElement.idl\nWebCore/html/HTMLLabelElement.idl\nWebCore/html/HTMLLegendElement.idl\nWebCore/html/HTMLLinkElement.idl\nWebCore/html/HTMLMapElement.idl\nWebCore/html/HTMLMarqueeElement.idl\nWebCore/html/HTMLMediaElement.idl\nWebCore/html/HTMLMenuElement.idl\nWebCore/html/HTMLMetaElement.idl\nWebCore/html/HTMLMeterElement.idl\nWebCore/html/HTMLModElement.idl\nWebCore/html/HTMLOListElement.idl\nWebCore/html/HTMLObjectElement.idl\nWebCore/html/HTMLOptGroupElement.idl\nWebCore/html/HTMLOptionElement.idl\nWebCore/html/HTMLOptionsCollection.idl\nWebCore/html/HTMLOutputElement.idl\nWebCore/html/HTMLParagraphElement.idl\nWebCore/html/HTMLParamElement.idl\nWebCore/html/HTMLPreElement.idl\nWebCore/html/HTMLProgressElement.idl\nWebCore/html/HTMLPropertiesCollection.idl\nWebCore/html/HTMLQuoteElement.idl\nWebCore/html/HTMLScriptElement.idl\nWebCore/html/HTMLSelectElement.idl\nWebCore/html/HTMLSourceElement.idl\nWebCore/html/HTMLSpanElement.idl\nWebCore/html/HTMLStyleElement.idl\nWebCore/html/HTMLTableCaptionElement.idl\nWebCore/html/HTMLTableCellElement.idl\nWebCore/html/HTMLTableColElement.idl\nWebCore/html/HTMLTableElement.idl\nWebCore/html/HTMLTableRowElement.idl\nWebCore/html/HTMLTableSectionElement.idl\nWebCore/html/HTMLTemplateElement.idl\nWebCore/html/HTMLTextAreaElement.idl\nWebCore/html/HTMLTitleElement.idl\nWebCore/html/HTMLTrackElement.idl\nWebCore/html/HTMLUListElement.idl\nWebCore/html/HTMLUnknownElement.idl\nWebCore/html/HTMLVideoElement.idl\nWebCore/html/ImageData.idl\nWebCore/html/MediaController.idl\nWebCore/html/MediaError.idl\nWebCore/html/MediaKeyError.idl\nWebCore/html/MediaKeyEvent.idl\nWebCore/html/MicroDataItemValue.idl\nWebCore/html/RadioNodeList.idl\nWebCore/html/TextMetrics.idl\nWebCore/html/TimeRanges.idl\nWebCore/html/ValidityState.idl\nWebCore/html/VoidCallback.idl\nWebCore/html/canvas/ArrayBuffer.idl\nWebCore/html/canvas/ArrayBufferView.idl\nWebCore/html/canvas/CanvasGradient.idl\nWebCore/html/canvas/CanvasPattern.idl\nWebCore/html/canvas/CanvasProxy.idl\nWebCore/html/canvas/CanvasRenderingContext.idl\nWebCore/html/canvas/CanvasRenderingContext2D.idl\nWebCore/html/canvas/DataView.idl\nWebCore/html/canvas/DOMPath.idl\nWebCore/html/canvas/EXTDrawBuffers.idl\nWebCore/html/canvas/EXTTextureFilterAnisotropic.idl\nWebCore/html/canvas/Float32Array.idl\nWebCore/html/canvas/Float64Array.idl\nWebCore/html/canvas/Int16Array.idl\nWebCore/html/canvas/Int32Array.idl\nWebCore/html/canvas/Int8Array.idl\nWebCore/html/canvas/OESElementIndexUint.idl\nWebCore/html/canvas/OESStandardDerivatives.idl\nWebCore/html/canvas/OESTextureFloat.idl\nWebCore/html/canvas/OESTextureHalfFloat.idl\nWebCore/html/canvas/OESVertexArrayObject.idl\nWebCore/html/canvas/Uint16Array.idl\nWebCore/html/canvas/Uint32Array.idl\nWebCore/html/canvas/Uint8Array.idl\nWebCore/html/canvas/Uint8ClampedArray.idl\nWebCore/html/canvas/WebGLActiveInfo.idl\nWebCore/html/canvas/WebGLBuffer.idl\nWebCore/html/canvas/WebGLCompressedTextureATC.idl\nWebCore/html/canvas/WebGLCompressedTexturePVRTC.idl\nWebCore/html/canvas/WebGLCompressedTextureS3TC.idl\nWebCore/html/canvas/WebGLContextAttributes.idl\nWebCore/html/canvas/WebGLContextEvent.idl\nWebCore/html/canvas/WebGLDepthTexture.idl\nWebCore/html/canvas/WebGLFramebuffer.idl\nWebCore/html/canvas/WebGLLoseContext.idl\nWebCore/html/canvas/WebGLProgram.idl\nWebCore/html/canvas/WebGLRenderbuffer.idl\nWebCore/html/canvas/WebGLRenderingContext.idl\nWebCore/html/canvas/WebGLShader.idl\nWebCore/html/canvas/WebGLShaderPrecisionFormat.idl\nWebCore/html/canvas/WebGLTexture.idl\nWebCore/html/canvas/WebGLUniformLocation.idl\nWebCore/html/canvas/WebGLVertexArrayObjectOES.idl\nWebCore/html/shadow/HTMLContentElement.idl\nWebCore/html/shadow/HTMLShadowElement.idl\nWebCore/html/track/TextTrack.idl\nWebCore/html/track/TextTrackCue.idl\nWebCore/html/track/TextTrackCueList.idl\nWebCore/html/track/TextTrackList.idl\nWebCore/html/track/TrackEvent.idl\nWebCore/inspector/InjectedScriptHost.idl\nWebCore/inspector/InspectorFrontendHost.idl\nWebCore/inspector/ScriptProfile.idl\nWebCore/inspector/ScriptProfileNode.idl\nWebCore/loader/appcache/DOMApplicationCache.idl\nWebCore/page/AbstractView.idl\nWebCore/page/BarInfo.idl\nWebCore/page/Console.idl\nWebCore/page/Crypto.idl\nWebCore/page/DOMSecurityPolicy.idl\nWebCore/page/DOMSelection.idl\nWebCore/page/DOMWindow.idl\nWebCore/page/EventSource.idl\nWebCore/page/History.idl\nWebCore/page/Location.idl\nWebCore/page/Navigator.idl\nWebCore/page/Performance.idl\nWebCore/page/PerformanceNavigation.idl\nWebCore/page/PerformanceTiming.idl\nWebCore/page/Screen.idl\nWebCore/page/SpeechInputEvent.idl\nWebCore/page/SpeechInputResult.idl\nWebCore/page/SpeechInputResultList.idl\nWebCore/page/WebKitPoint.idl\nWebCore/page/WorkerNavigator.idl\nWebCore/plugins/DOMMimeType.idl\nWebCore/plugins/DOMMimeTypeArray.idl\nWebCore/plugins/DOMPlugin.idl\nWebCore/plugins/DOMPluginArray.idl\nWebCore/storage/Storage.idl\nWebCore/storage/StorageEvent.idl\nWebCore/svg/ElementTimeControl.idl\nWebCore/svg/SVGAElement.idl\nWebCore/svg/SVGAltGlyphDefElement.idl\nWebCore/svg/SVGAltGlyphElement.idl\nWebCore/svg/SVGAltGlyphItemElement.idl\nWebCore/svg/SVGAngle.idl\nWebCore/svg/SVGAnimateColorElement.idl\nWebCore/svg/SVGAnimateElement.idl\nWebCore/svg/SVGAnimateMotionElement.idl\nWebCore/svg/SVGAnimateTransformElement.idl\nWebCore/svg/SVGAnimatedAngle.idl\nWebCore/svg/SVGAnimatedBoolean.idl\nWebCore/svg/SVGAnimatedEnumeration.idl\nWebCore/svg/SVGAnimatedInteger.idl\nWebCore/svg/SVGAnimatedLength.idl\nWebCore/svg/SVGAnimatedLengthList.idl\nWebCore/svg/SVGAnimatedNumber.idl\nWebCore/svg/SVGAnimatedNumberList.idl\nWebCore/svg/SVGAnimatedPreserveAspectRatio.idl\nWebCore/svg/SVGAnimatedRect.idl\nWebCore/svg/SVGAnimatedString.idl\nWebCore/svg/SVGAnimatedTransformList.idl\nWebCore/svg/SVGAnimationElement.idl\nWebCore/svg/SVGCircleElement.idl\nWebCore/svg/SVGClipPathElement.idl\nWebCore/svg/SVGColor.idl\nWebCore/svg/SVGComponentTransferFunctionElement.idl\nWebCore/svg/SVGCursorElement.idl\nWebCore/svg/SVGDefsElement.idl\nWebCore/svg/SVGDescElement.idl\nWebCore/svg/SVGDocument.idl\nWebCore/svg/SVGElement.idl\nWebCore/svg/SVGElementInstance.idl\nWebCore/svg/SVGElementInstanceList.idl\nWebCore/svg/SVGEllipseElement.idl\nWebCore/svg/SVGException.idl\nWebCore/svg/SVGExternalResourcesRequired.idl\nWebCore/svg/SVGFEBlendElement.idl\nWebCore/svg/SVGFEColorMatrixElement.idl\nWebCore/svg/SVGFEComponentTransferElement.idl\nWebCore/svg/SVGFECompositeElement.idl\nWebCore/svg/SVGFEConvolveMatrixElement.idl\nWebCore/svg/SVGFEDiffuseLightingElement.idl\nWebCore/svg/SVGFEDisplacementMapElement.idl\nWebCore/svg/SVGFEDistantLightElement.idl\nWebCore/svg/SVGFEDropShadowElement.idl\nWebCore/svg/SVGFEFloodElement.idl\nWebCore/svg/SVGFEFuncAElement.idl\nWebCore/svg/SVGFEFuncBElement.idl\nWebCore/svg/SVGFEFuncGElement.idl\nWebCore/svg/SVGFEFuncRElement.idl\nWebCore/svg/SVGFEGaussianBlurElement.idl\nWebCore/svg/SVGFEImageElement.idl\nWebCore/svg/SVGFEMergeElement.idl\nWebCore/svg/SVGFEMergeNodeElement.idl\nWebCore/svg/SVGFEMorphologyElement.idl\nWebCore/svg/SVGFEOffsetElement.idl\nWebCore/svg/SVGFEPointLightElement.idl\nWebCore/svg/SVGFESpecularLightingElement.idl\nWebCore/svg/SVGFESpotLightElement.idl\nWebCore/svg/SVGFETileElement.idl\nWebCore/svg/SVGFETurbulenceElement.idl\nWebCore/svg/SVGFilterElement.idl\nWebCore/svg/SVGFilterPrimitiveStandardAttributes.idl\nWebCore/svg/SVGFitToViewBox.idl\nWebCore/svg/SVGFontElement.idl\nWebCore/svg/SVGFontFaceElement.idl\nWebCore/svg/SVGFontFaceFormatElement.idl\nWebCore/svg/SVGFontFaceNameElement.idl\nWebCore/svg/SVGFontFaceSrcElement.idl\nWebCore/svg/SVGFontFaceUriElement.idl\nWebCore/svg/SVGForeignObjectElement.idl\nWebCore/svg/SVGGElement.idl\nWebCore/svg/SVGGlyphElement.idl\nWebCore/svg/SVGGlyphRefElement.idl\nWebCore/svg/SVGGradientElement.idl\nWebCore/svg/SVGHKernElement.idl\nWebCore/svg/SVGImageElement.idl\nWebCore/svg/SVGLangSpace.idl\nWebCore/svg/SVGLength.idl\nWebCore/svg/SVGLengthList.idl\nWebCore/svg/SVGLineElement.idl\nWebCore/svg/SVGLinearGradientElement.idl\nWebCore/svg/SVGLocatable.idl\nWebCore/svg/SVGMPathElement.idl\nWebCore/svg/SVGMarkerElement.idl\nWebCore/svg/SVGMaskElement.idl\nWebCore/svg/SVGMatrix.idl\nWebCore/svg/SVGMetadataElement.idl\nWebCore/svg/SVGMissingGlyphElement.idl\nWebCore/svg/SVGNumber.idl\nWebCore/svg/SVGNumberList.idl\nWebCore/svg/SVGPaint.idl\nWebCore/svg/SVGPathElement.idl\nWebCore/svg/SVGPathSeg.idl\nWebCore/svg/SVGPathSegArcAbs.idl\nWebCore/svg/SVGPathSegArcRel.idl\nWebCore/svg/SVGPathSegClosePath.idl\nWebCore/svg/SVGPathSegCurvetoCubicAbs.idl\nWebCore/svg/SVGPathSegCurvetoCubicRel.idl\nWebCore/svg/SVGPathSegCurvetoCubicSmoothAbs.idl\nWebCore/svg/SVGPathSegCurvetoCubicSmoothRel.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticRel.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticSmoothAbs.idl\nWebCore/svg/SVGPathSegCurvetoQuadraticSmoothRel.idl\nWebCore/svg/SVGPathSegLinetoAbs.idl\nWebCore/svg/SVGPathSegLinetoHorizontalAbs.idl\nWebCore/svg/SVGPathSegLinetoHorizontalRel.idl\nWebCore/svg/SVGPathSegLinetoRel.idl\nWebCore/svg/SVGPathSegLinetoVerticalAbs.idl\nWebCore/svg/SVGPathSegLinetoVerticalRel.idl\nWebCore/svg/SVGPathSegList.idl\nWebCore/svg/SVGPathSegMovetoAbs.idl\nWebCore/svg/SVGPathSegMovetoRel.idl\nWebCore/svg/SVGPatternElement.idl\nWebCore/svg/SVGPoint.idl\nWebCore/svg/SVGPointList.idl\nWebCore/svg/SVGPolygonElement.idl\nWebCore/svg/SVGPolylineElement.idl\nWebCore/svg/SVGPreserveAspectRatio.idl\nWebCore/svg/SVGRadialGradientElement.idl\nWebCore/svg/SVGRect.idl\nWebCore/svg/SVGRectElement.idl\nWebCore/svg/SVGRenderingIntent.idl\nWebCore/svg/SVGSVGElement.idl\nWebCore/svg/SVGScriptElement.idl\nWebCore/svg/SVGSetElement.idl\nWebCore/svg/SVGStopElement.idl\nWebCore/svg/SVGStringList.idl\nWebCore/svg/SVGStyleElement.idl\nWebCore/svg/SVGStyledElement.idl\nWebCore/svg/SVGSwitchElement.idl\nWebCore/svg/SVGSymbolElement.idl\nWebCore/svg/SVGTRefElement.idl\nWebCore/svg/SVGTSpanElement.idl\nWebCore/svg/SVGTests.idl\nWebCore/svg/SVGTextContentElement.idl\nWebCore/svg/SVGTextElement.idl\nWebCore/svg/SVGTextPathElement.idl\nWebCore/svg/SVGTextPositioningElement.idl\nWebCore/svg/SVGTitleElement.idl\nWebCore/svg/SVGTransform.idl\nWebCore/svg/SVGTransformList.idl\nWebCore/svg/SVGTransformable.idl\nWebCore/svg/SVGURIReference.idl\nWebCore/svg/SVGUnitTypes.idl\nWebCore/svg/SVGUseElement.idl\nWebCore/svg/SVGVKernElement.idl\nWebCore/svg/SVGViewElement.idl\nWebCore/svg/SVGViewSpec.idl\nWebCore/svg/SVGZoomAndPan.idl\nWebCore/svg/SVGZoomEvent.idl\nWebCore/testing/Internals.idl\nWebCore/testing/InternalSettings.idl\nWebCore/testing/MallocStatistics.idl\nWebCore/testing/MemoryInfo.idl\nWebCore/testing/TypeConversions.idl\nWebCore/workers/AbstractWorker.idl\nWebCore/workers/DedicatedWorkerContext.idl\nWebCore/workers/SharedWorker.idl\nWebCore/workers/SharedWorkerContext.idl\nWebCore/workers/Worker.idl\nWebCore/workers/WorkerContext.idl\nWebCore/workers/WorkerLocation.idl\nWebCore/xml/DOMParser.idl\nWebCore/xml/XMLHttpRequest.idl\nWebCore/xml/XMLHttpRequestException.idl\nWebCore/xml/XMLHttpRequestProgressEvent.idl\nWebCore/xml/XMLHttpRequestUpload.idl\nWebCore/xml/XMLSerializer.idl\nWebCore/xml/XPathEvaluator.idl\nWebCore/xml/XPathException.idl\nWebCore/xml/XPathExpression.idl\nWebCore/xml/XPathNSResolver.idl\nWebCore/xml/XPathResult.idl\nWebCore/xml/XSLTProcessor.idl\nInternalSettingsGenerated.idl\nWebCore/inspector/JavaScriptCallFrame.idl\n" > ./idl_files.tmp
    6060perl JavaScriptCore/docs/make-bytecode-docs.pl JavaScriptCore/interpreter/Interpreter.cpp docs/bytecode.html
    6161cat WebCore/css/CSSPropertyNames.in WebCore/css/SVGCSSPropertyNames.in > CSSPropertyNames.in
Note: See TracChangeset for help on using the changeset viewer.