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

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

Issue 650183003: Clean up forward declarations in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 30 matching lines...) Expand all
41 41
42 namespace blink { 42 namespace blink {
43 43
44 class Document; 44 class Document;
45 class Element; 45 class Element;
46 class Event; 46 class Event;
47 class EventListener; 47 class EventListener;
48 class EventTarget; 48 class EventTarget;
49 class InspectorDOMAgent; 49 class InspectorDOMAgent;
50 class InspectorDebuggerAgent; 50 class InspectorDebuggerAgent;
51 class InspectorFrontend;
52 class InstrumentingAgents;
53 class JSONObject; 51 class JSONObject;
54 class Node; 52 class Node;
55 53
56 typedef String ErrorString; 54 typedef String ErrorString;
57 55
58 class InspectorDOMDebuggerAgent final 56 class InspectorDOMDebuggerAgent final
59 : public InspectorBaseAgent<InspectorDOMDebuggerAgent> 57 : public InspectorBaseAgent<InspectorDOMDebuggerAgent>
60 , public InspectorDebuggerAgent::Listener 58 , public InspectorDebuggerAgent::Listener
61 , public InspectorDOMAgent::Listener 59 , public InspectorDOMAgent::Listener
62 , public InspectorBackendDispatcher::DOMDebuggerCommandHandler { 60 , public InspectorBackendDispatcher::DOMDebuggerCommandHandler {
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 133 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
136 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; 134 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent;
137 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints; 135 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints;
138 bool m_pauseInNextEventListener; 136 bool m_pauseInNextEventListener;
139 }; 137 };
140 138
141 } // namespace blink 139 } // namespace blink
142 140
143 141
144 #endif // !defined(InspectorDOMDebuggerAgent_h) 142 #endif // !defined(InspectorDOMDebuggerAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDOMAgent.h ('k') | Source/core/inspector/InspectorDOMStorageAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698