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

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

Issue 2295913003: [DevTools] Switch from platform/v8_inspector to v8/v8-inspector.h. (Closed)
Patch Set: rebase Created 4 years, 3 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 21 matching lines...) Expand all
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 "core/inspector/V8InspectorString.h" 41 #include "core/inspector/V8InspectorString.h"
42 #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 };
52 51
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 m_instrumentingAgents->removeInspectorDOMDebuggerAgent(this); 698 m_instrumentingAgents->removeInspectorDOMDebuggerAgent(this);
700 } 699 }
701 } 700 }
702 701
703 void InspectorDOMDebuggerAgent::didCommitLoadForLocalFrame(LocalFrame*) 702 void InspectorDOMDebuggerAgent::didCommitLoadForLocalFrame(LocalFrame*)
704 { 703 {
705 m_domBreakpoints.clear(); 704 m_domBreakpoints.clear();
706 } 705 }
707 706
708 } // namespace blink 707 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698