Changeset 175993 in webkit
- Timestamp:
- Nov 11, 2014, 5:05:58 PM (12 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
inspector/remote/RemoteInspector.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r175967 r175993 1 2014-11-11 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Don't require a debugger be attached for inspector auto attach 4 https://bugs.webkit.org/show_bug.cgi?id=138638 5 6 Reviewed by Timothy Hatcher. 7 8 * inspector/remote/RemoteInspector.mm: 9 (Inspector::RemoteInspector::updateDebuggableAutomaticInspectCandidate): 10 1 11 2014-11-11 Akos Kiss <akiss@inf.u-szeged.hu> 2 12 -
trunk/Source/JavaScriptCore/inspector/remote/RemoteInspector.mm
r175629 r175993 190 190 ASSERT_UNUSED(result, !result.isNewEntry); 191 191 192 // Don't allow automatic inspection unless there is a debuggeror we are stopped.193 if (! WTFIsDebuggerAttached() || !m_automaticInspectionEnabled || !m_enabled) {192 // Don't allow automatic inspection unless it is allowed or we are stopped. 193 if (!m_automaticInspectionEnabled || !m_enabled) { 194 194 pushListingSoon(); 195 195 return;
Note:
See TracChangeset
for help on using the changeset viewer.