Changeset 161382 in webkit
- Timestamp:
- Jan 6, 2014, 4:05:48 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r161381 r161382 1 2014-01-06 Seokju Kwon <seokju@webkit.org> 2 3 Web Inspector: Get rid of Inspector/BindingVisitors.h 4 https://bugs.webkit.org/show_bug.cgi?id=126374 5 6 Reviewed by Joseph Pecoraro. 7 8 No new tests, No change in behavior. 9 10 In r161204, methods related to BindingVisitors was removed. 11 12 * GNUmakefile.list.am: 13 * WebCore.vcxproj/WebCore.vcxproj: 14 * WebCore.vcxproj/WebCore.vcxproj.filters: 15 * WebCore.xcodeproj/project.pbxproj: 16 * bindings/js/ScriptProfiler.h: 17 * inspector/BindingVisitors.h: Removed. 18 * inspector/InspectorCanvasAgent.cpp: 19 * inspector/InspectorMemoryAgent.cpp: 20 1 21 2014-01-06 Tim Horton <timothy_horton@apple.com> 2 22 -
trunk/Source/WebCore/GNUmakefile.list.am
r161271 r161382 3776 3776 Source/WebCore/icu/unicode/utypes.h \ 3777 3777 Source/WebCore/icu/unicode/uversion.h \ 3778 Source/WebCore/inspector/BindingVisitors.h \3779 3778 Source/WebCore/inspector/CommandLineAPIHost.cpp \ 3780 3779 Source/WebCore/inspector/CommandLineAPIHost.h \ -
trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj
r161348 r161382 21002 21002 <ClInclude Include="..\bridge\runtime_object.h" /> 21003 21003 <ClInclude Include="..\bridge\runtime_root.h" /> 21004 <ClInclude Include="..\inspector\BindingVisitors.h" />21005 21004 <ClInclude Include="..\inspector\ConsoleAPITypes.h" /> 21006 21005 <ClInclude Include="..\inspector\CommandLineAPIHost.h" /> -
trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters
r161348 r161382 12402 12402 <Filter>bridge</Filter> 12403 12403 </ClInclude> 12404 <ClInclude Include="..\inspector\BindingVisitors.h">12405 <Filter>inspector</Filter>12406 </ClInclude>12407 12404 <ClInclude Include="..\inspector\CommandLineAPIHost.h"> 12408 12405 <Filter>inspector</Filter> -
trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj
r161373 r161382 5934 5934 F34742E91343635000531BC2 /* WorkerScriptDebugServer.h in Headers */ = {isa = PBXBuildFile; fileRef = F34742E71343635000531BC2 /* WorkerScriptDebugServer.h */; }; 5935 5935 F350B73513F1377D00880C43 /* InstrumentingAgents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F350B73413F1377D00880C43 /* InstrumentingAgents.cpp */; }; 5936 F35AE5AC14925F5B004D5776 /* BindingVisitors.h in Headers */ = {isa = PBXBuildFile; fileRef = F35AE5AB14925F5B004D5776 /* BindingVisitors.h */; };5937 5936 F3644AFF1119805900E0D537 /* InjectedScript.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F3644AFD1119805900E0D537 /* InjectedScript.cpp */; }; 5938 5937 F3644B001119805900E0D537 /* InjectedScript.h in Headers */ = {isa = PBXBuildFile; fileRef = F3644AFE1119805900E0D537 /* InjectedScript.h */; }; … … 13141 13140 F34742E71343635000531BC2 /* WorkerScriptDebugServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WorkerScriptDebugServer.h; sourceTree = "<group>"; }; 13142 13141 F350B73413F1377D00880C43 /* InstrumentingAgents.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InstrumentingAgents.cpp; sourceTree = "<group>"; }; 13143 F35AE5AB14925F5B004D5776 /* BindingVisitors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BindingVisitors.h; sourceTree = "<group>"; };13144 13142 F3644AFD1119805900E0D537 /* InjectedScript.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedScript.cpp; sourceTree = "<group>"; }; 13145 13143 F3644AFE1119805900E0D537 /* InjectedScript.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InjectedScript.h; sourceTree = "<group>"; }; … … 14566 14564 A518225317E28CF100A9BA1D /* Scripts */, 14567 14565 A593CF7518402D4B00BFCE27 /* combine-javascript-resources.pl */, 14568 F35AE5AB14925F5B004D5776 /* BindingVisitors.h */,14569 14566 A584FE311864D5AF00843B10 /* CommandLineAPIHost.cpp */, 14570 14567 A584FE321864D5AF00843B10 /* CommandLineAPIHost.h */, … … 22383 22380 BCE789861120E7A60060ECE5 /* BidiRun.h in Headers */, 22384 22381 A8C402931348B2220063F1E5 /* BidiRunList.h in Headers */, 22385 F35AE5AC14925F5B004D5776 /* BindingVisitors.h in Headers */,22386 22382 FD31608D12B026F700C1A359 /* Biquad.h in Headers */, 22387 22383 FD31602512B0267600C1A359 /* BiquadDSPKernel.h in Headers */, -
trunk/Source/WebCore/bindings/js/ScriptProfiler.h
r161204 r161382 43 43 namespace WebCore { 44 44 45 class ExternalArrayVisitor;46 class ExternalStringVisitor;47 class WrappedNodeVisitor;48 45 class Page; 49 46 class WorkerGlobalScope; -
trunk/Source/WebCore/inspector/InspectorCanvasAgent.cpp
r160557 r161382 35 35 #include "InspectorCanvasAgent.h" 36 36 37 #include "BindingVisitors.h"38 37 #include "DOMWindow.h" 39 38 #include "HTMLCanvasElement.h" -
trunk/Source/WebCore/inspector/InspectorMemoryAgent.cpp
r160557 r161382 35 35 #include "InspectorMemoryAgent.h" 36 36 37 #include "BindingVisitors.h"38 37 #include "CharacterData.h" 39 38 #include "Document.h"
Note:
See TracChangeset
for help on using the changeset viewer.