| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 NodeRemoved, | 57 NodeRemoved, |
| 58 DOMBreakpointTypesCount | 58 DOMBreakpointTypesCount |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 static const char listenerEventCategoryType[] = "listener:"; | 61 static const char listenerEventCategoryType[] = "listener:"; |
| 62 static const char instrumentationEventCategoryType[] = "instrumentation:"; | 62 static const char instrumentationEventCategoryType[] = "instrumentation:"; |
| 63 | 63 |
| 64 const uint32_t inheritableDOMBreakpointTypesMask = (1 << SubtreeModified); | 64 const uint32_t inheritableDOMBreakpointTypesMask = (1 << SubtreeModified); |
| 65 const int domBreakpointDerivedTypeShift = 16; | 65 const int domBreakpointDerivedTypeShift = 16; |
| 66 | 66 |
| 67 } | 67 } // namespace |
| 68 | 68 |
| 69 namespace blink { | 69 namespace blink { |
| 70 | 70 |
| 71 static const char requestAnimationFrameEventName[] = "requestAnimationFrame"; | 71 static const char requestAnimationFrameEventName[] = "requestAnimationFrame"; |
| 72 static const char cancelAnimationFrameEventName[] = "cancelAnimationFrame"; | 72 static const char cancelAnimationFrameEventName[] = "cancelAnimationFrame"; |
| 73 static const char animationFrameFiredEventName[] = "animationFrameFired"; | 73 static const char animationFrameFiredEventName[] = "animationFrameFired"; |
| 74 static const char setInnerHTMLEventName[] = "setInnerHTML"; | 74 static const char setInnerHTMLEventName[] = "setInnerHTML"; |
| 75 static const char setTimerEventName[] = "setTimer"; | 75 static const char setTimerEventName[] = "setTimer"; |
| 76 static const char clearTimerEventName[] = "clearTimer"; | 76 static const char clearTimerEventName[] = "clearTimer"; |
| 77 static const char timerFiredEventName[] = "timerFired"; | 77 static const char timerFiredEventName[] = "timerFired"; |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 m_instrumentingAgents->setInspectorDOMDebuggerAgent(nullptr); | 715 m_instrumentingAgents->setInspectorDOMDebuggerAgent(nullptr); |
| 716 } | 716 } |
| 717 } | 717 } |
| 718 | 718 |
| 719 void InspectorDOMDebuggerAgent::didCommitLoadForLocalFrame(LocalFrame*) | 719 void InspectorDOMDebuggerAgent::didCommitLoadForLocalFrame(LocalFrame*) |
| 720 { | 720 { |
| 721 m_domBreakpoints.clear(); | 721 m_domBreakpoints.clear(); |
| 722 } | 722 } |
| 723 | 723 |
| 724 } // namespace blink | 724 } // namespace blink |
| OLD | NEW |