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

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

Issue 2542203004: blink: Cleanup class/struct forward declarations (Closed)
Patch Set: Created 4 years 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 26 matching lines...) Expand all
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 #include <v8-inspector.h> 42 #include <v8-inspector.h>
43 43
44 namespace blink { 44 namespace blink {
45 45
46 class Element; 46 class Element;
47 class Event;
48 class InspectorDOMAgent; 47 class InspectorDOMAgent;
49 class Node; 48 class Node;
50 49
51 namespace protocol { 50 namespace protocol {
52 class DictionaryValue; 51 class DictionaryValue;
53 } 52 }
54 53
55 class CORE_EXPORT InspectorDOMDebuggerAgent final 54 class CORE_EXPORT InspectorDOMDebuggerAgent final
56 : public InspectorBaseAgent<protocol::DOMDebugger::Metainfo> { 55 : public InspectorBaseAgent<protocol::DOMDebugger::Metainfo> {
57 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent); 56 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent);
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 131
133 v8::Isolate* m_isolate; 132 v8::Isolate* m_isolate;
134 Member<InspectorDOMAgent> m_domAgent; 133 Member<InspectorDOMAgent> m_domAgent;
135 v8_inspector::V8InspectorSession* m_v8Session; 134 v8_inspector::V8InspectorSession* m_v8Session;
136 HeapHashMap<Member<Node>, uint32_t> m_domBreakpoints; 135 HeapHashMap<Member<Node>, uint32_t> m_domBreakpoints;
137 }; 136 };
138 137
139 } // namespace blink 138 } // namespace blink
140 139
141 #endif // !defined(InspectorDOMDebuggerAgent_h) 140 #endif // !defined(InspectorDOMDebuggerAgent_h)
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/input/EventHandler.h ('k') | third_party/WebKit/Source/core/inspector/InspectorHighlight.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698