Changeset 172930 in webkit for trunk/Source/JavaScriptCore/ChangeLog
- Timestamp:
- Aug 25, 2014, 11:39:25 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r172897 r172930 1 2014-08-24 Brian J. Burg <[email protected]> 2 3 Web Inspector: rename Inspector::TypeBuilder to Inspector::Protocol 4 https://bugs.webkit.org/show_bug.cgi?id=136031 5 6 Reviewed by Timothy Hatcher. 7 8 Rename TypeBuilder namespace to Protocol. Disambiguate where 9 necessary. Also rename InspectorTypeBuilder to ProtocolTypes. 10 11 * CMakeLists.txt: 12 * DerivedSources.make: 13 * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj: 14 * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters: 15 * JavaScriptCore.vcxproj/copy-files.cmd: 16 * JavaScriptCore.xcodeproj/project.pbxproj: 17 * inspector/ConsoleMessage.cpp: 18 (Inspector::messageSourceValue): 19 (Inspector::messageTypeValue): 20 (Inspector::messageLevelValue): 21 (Inspector::ConsoleMessage::addToFrontend): 22 * inspector/ContentSearchUtilities.cpp: 23 (Inspector::ContentSearchUtilities::buildObjectForSearchMatch): 24 (Inspector::ContentSearchUtilities::searchInTextByLines): 25 * inspector/ContentSearchUtilities.h: 26 * inspector/InjectedScript.cpp: 27 (Inspector::InjectedScript::evaluate): 28 (Inspector::InjectedScript::callFunctionOn): 29 (Inspector::InjectedScript::evaluateOnCallFrame): 30 (Inspector::InjectedScript::getFunctionDetails): 31 (Inspector::InjectedScript::getProperties): 32 (Inspector::InjectedScript::getInternalProperties): 33 (Inspector::InjectedScript::wrapCallFrames): 34 (Inspector::InjectedScript::wrapObject): 35 (Inspector::InjectedScript::wrapTable): 36 * inspector/InjectedScript.h: 37 * inspector/InjectedScriptBase.cpp: 38 (Inspector::InjectedScriptBase::makeEvalCall): 39 * inspector/InjectedScriptBase.h: 40 * inspector/InspectorTypeBuilder.h: Removed. 41 * inspector/ScriptCallFrame.cpp: 42 (Inspector::ScriptCallFrame::buildInspectorObject): 43 * inspector/ScriptCallFrame.h: 44 * inspector/ScriptCallStack.cpp: 45 (Inspector::ScriptCallStack::buildInspectorArray): 46 * inspector/ScriptCallStack.h: 47 * inspector/agents/InspectorAgent.cpp: 48 (Inspector::InspectorAgent::inspect): 49 * inspector/agents/InspectorAgent.h: 50 * inspector/agents/InspectorDebuggerAgent.cpp: 51 (Inspector::breakpointActionTypeForString): 52 (Inspector::InspectorDebuggerAgent::setBreakpointByUrl): 53 (Inspector::InspectorDebuggerAgent::setBreakpoint): 54 (Inspector::InspectorDebuggerAgent::resolveBreakpoint): 55 (Inspector::InspectorDebuggerAgent::searchInContent): 56 (Inspector::InspectorDebuggerAgent::getFunctionDetails): 57 (Inspector::InspectorDebuggerAgent::evaluateOnCallFrame): 58 (Inspector::InspectorDebuggerAgent::currentCallFrames): 59 (Inspector::InspectorDebuggerAgent::didParseSource): 60 (Inspector::InspectorDebuggerAgent::breakpointActionProbe): 61 * inspector/agents/InspectorDebuggerAgent.h: 62 * inspector/agents/InspectorProfilerAgent.cpp: 63 (Inspector::InspectorProfilerAgent::createProfileHeader): 64 (Inspector::InspectorProfilerAgent::getProfileHeaders): 65 (Inspector::buildInspectorObject): 66 (Inspector::InspectorProfilerAgent::buildProfileInspectorObject): 67 (Inspector::InspectorProfilerAgent::getCPUProfile): 68 * inspector/agents/InspectorProfilerAgent.h: 69 * inspector/agents/InspectorRuntimeAgent.cpp: 70 (Inspector::buildErrorRangeObject): 71 (Inspector::InspectorRuntimeAgent::parse): 72 (Inspector::InspectorRuntimeAgent::evaluate): 73 (Inspector::InspectorRuntimeAgent::callFunctionOn): 74 (Inspector::InspectorRuntimeAgent::getProperties): 75 (Inspector::InspectorRuntimeAgent::getRuntimeTypesForVariablesAtOffsets): 76 * inspector/agents/InspectorRuntimeAgent.h: 77 * inspector/scripts/codegen/__init__.py: 78 * inspector/scripts/codegen/generate_backend_dispatcher_header.py: 79 (BackendDispatcherHeaderGenerator.generate_output): 80 * inspector/scripts/codegen/generate_backend_dispatcher_implementation.py: 81 (BackendDispatcherImplementationGenerator._generate_async_dispatcher_class_for_domain): 82 (BackendDispatcherImplementationGenerator._generate_dispatcher_implementation_for_command): 83 * inspector/scripts/codegen/generate_frontend_dispatcher_header.py: 84 (FrontendDispatcherHeaderGenerator.generate_output): 85 * inspector/scripts/codegen/generate_frontend_dispatcher_implementation.py: 86 (FrontendDispatcherImplementationGenerator._generate_dispatcher_implementation_for_event): 87 * inspector/scripts/codegen/generate_type_builder_header.py: Removed. 88 * inspector/scripts/codegen/generate_type_builder_implementation.py: Removed. 89 * inspector/scripts/codegen/generator.py: 90 (Generator.protocol_type_string_for_type): 91 (Generator.protocol_type_string_for_type_member): 92 (Generator.type_string_for_type_with_name): 93 (Generator.type_string_for_formal_out_parameter): 94 (Generator.type_string_for_formal_async_parameter): 95 (Generator.type_string_for_stack_in_parameter): 96 (Generator.type_string_for_stack_out_parameter): 97 (Generator.assertion_method_for_type_member.assertion_method_for_type): 98 (Generator.assertion_method_for_type_member): 99 (Generator.type_builder_string_for_type): Deleted. 100 (Generator.type_builder_string_for_type_member): Deleted. 101 * inspector/scripts/codegen/generator_templates.py: 102 (Inspector): 103 * inspector/scripts/generate-inspector-protocol-bindings.py: 104 (generate_from_specification): 105 * inspector/scripts/tests/expected/commands-with-async-attribute.json-result: 106 * inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result: 107 * inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result: 108 * inspector/scripts/tests/expected/events-with-optional-parameters.json-result: 109 * inspector/scripts/tests/expected/same-type-id-different-domain.json-result: 110 * inspector/scripts/tests/expected/shadowed-optional-type-setters.json-result: 111 * inspector/scripts/tests/expected/type-declaration-aliased-primitive-type.json-result: 112 * inspector/scripts/tests/expected/type-declaration-array-type.json-result: 113 * inspector/scripts/tests/expected/type-declaration-enum-type.json-result: 114 * inspector/scripts/tests/expected/type-declaration-object-type.json-result: 115 * inspector/scripts/tests/expected/type-requiring-runtime-casts.json-result: 116 * runtime/HighFidelityTypeProfiler.cpp: 117 (JSC::HighFidelityTypeProfiler::getTypesForVariableAtOffsetForInspector): 118 * runtime/HighFidelityTypeProfiler.h: 119 * runtime/TypeSet.cpp: 120 (JSC::TypeSet::allPrimitiveTypeNames): 121 (JSC::TypeSet::allStructureRepresentations): 122 (JSC::StructureShape::inspectorRepresentation): 123 * runtime/TypeSet.h: 124 1 125 2014-08-24 Brian J. Burg <[email protected]> 2 126
Note:
See TracChangeset
for help on using the changeset viewer.