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

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

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 #define InspectorDOMDebuggerAgent_h 32 #define InspectorDOMDebuggerAgent_h
33 33
34 #include "bindings/core/v8/V8EventListenerInfo.h" 34 #include "bindings/core/v8/V8EventListenerInfo.h"
35 #include "core/CoreExport.h" 35 #include "core/CoreExport.h"
36 #include "core/inspector/InspectorBaseAgent.h" 36 #include "core/inspector/InspectorBaseAgent.h"
37 #include "core/inspector/InspectorDOMAgent.h" 37 #include "core/inspector/InspectorDOMAgent.h"
38 #include "core/inspector/protocol/DOMDebugger.h" 38 #include "core/inspector/protocol/DOMDebugger.h"
39 #include "wtf/HashMap.h" 39 #include "wtf/HashMap.h"
40 #include "wtf/text/WTFString.h" 40 #include "wtf/text/WTFString.h"
41 41
42 namespace v8_inspector { 42 #include <v8-inspector.h>
43 class V8InspectorSession;
44 }
45 43
46 namespace blink { 44 namespace blink {
47 45
48 class Element; 46 class Element;
49 class Event; 47 class Event;
50 class EventTarget; 48 class EventTarget;
51 class InspectorDOMAgent; 49 class InspectorDOMAgent;
52 class Node; 50 class Node;
53 51
54 namespace protocol { 52 namespace protocol {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 v8::Isolate* m_isolate; 115 v8::Isolate* m_isolate;
118 Member<InspectorDOMAgent> m_domAgent; 116 Member<InspectorDOMAgent> m_domAgent;
119 v8_inspector::V8InspectorSession* m_v8Session; 117 v8_inspector::V8InspectorSession* m_v8Session;
120 HeapHashMap<Member<Node>, uint32_t> m_domBreakpoints; 118 HeapHashMap<Member<Node>, uint32_t> m_domBreakpoints;
121 }; 119 };
122 120
123 } // namespace blink 121 } // namespace blink
124 122
125 123
126 #endif // !defined(InspectorDOMDebuggerAgent_h) 124 #endif // !defined(InspectorDOMDebuggerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698