Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.cpp

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 20 matching lines...) Expand all
31 #include "core/inspector/InspectorDOMDebuggerAgent.h" 31 #include "core/inspector/InspectorDOMDebuggerAgent.h"
32 32
33 #include "bindings/core/v8/ScriptEventListener.h" 33 #include "bindings/core/v8/ScriptEventListener.h"
34 #include "bindings/core/v8/V8EventTarget.h" 34 #include "bindings/core/v8/V8EventTarget.h"
35 #include "core/dom/Element.h" 35 #include "core/dom/Element.h"
36 #include "core/dom/Node.h" 36 #include "core/dom/Node.h"
37 #include "core/events/Event.h" 37 #include "core/events/Event.h"
38 #include "core/events/EventTarget.h" 38 #include "core/events/EventTarget.h"
39 #include "core/frame/LocalDOMWindow.h" 39 #include "core/frame/LocalDOMWindow.h"
40 #include "core/inspector/InspectorDOMAgent.h" 40 #include "core/inspector/InspectorDOMAgent.h"
41 #include "platform/inspector_protocol/Values.h"
42 #include "platform/v8_inspector/public/V8InspectorSession.h" 41 #include "platform/v8_inspector/public/V8InspectorSession.h"
43 42
44 namespace { 43 namespace {
45 44
46 enum DOMBreakpointType { 45 enum DOMBreakpointType {
47 SubtreeModified = 0, 46 SubtreeModified = 0,
48 AttributeModified, 47 AttributeModified,
49 NodeRemoved, 48 NodeRemoved,
50 DOMBreakpointTypesCount 49 DOMBreakpointTypesCount
51 }; 50 };
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 m_instrumentingAgents->removeInspectorDOMDebuggerAgent(this); 709 m_instrumentingAgents->removeInspectorDOMDebuggerAgent(this);
711 } 710 }
712 } 711 }
713 712
714 void InspectorDOMDebuggerAgent::didCommitLoadForLocalFrame(LocalFrame*) 713 void InspectorDOMDebuggerAgent::didCommitLoadForLocalFrame(LocalFrame*)
715 { 714 {
716 m_domBreakpoints.clear(); 715 m_domBreakpoints.clear();
717 } 716 }
718 717
719 } // namespace blink 718 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698