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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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 27 matching lines...) Expand all
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; 47 class Event;
48 class EventTarget;
49 class InspectorDOMAgent; 48 class InspectorDOMAgent;
50 class Node; 49 class Node;
51 50
52 namespace protocol { 51 namespace protocol {
53 class DictionaryValue; 52 class DictionaryValue;
54 } 53 }
55 54
56 class CORE_EXPORT InspectorDOMDebuggerAgent final 55 class CORE_EXPORT InspectorDOMDebuggerAgent final
57 : public InspectorBaseAgent<protocol::DOMDebugger::Metainfo> { 56 : public InspectorBaseAgent<protocol::DOMDebugger::Metainfo> {
58 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent); 57 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent);
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 143
145 v8::Isolate* m_isolate; 144 v8::Isolate* m_isolate;
146 Member<InspectorDOMAgent> m_domAgent; 145 Member<InspectorDOMAgent> m_domAgent;
147 v8_inspector::V8InspectorSession* m_v8Session; 146 v8_inspector::V8InspectorSession* m_v8Session;
148 HeapHashMap<Member<Node>, uint32_t> m_domBreakpoints; 147 HeapHashMap<Member<Node>, uint32_t> m_domBreakpoints;
149 }; 148 };
150 149
151 } // namespace blink 150 } // namespace blink
152 151
153 #endif // !defined(InspectorDOMDebuggerAgent_h) 152 #endif // !defined(InspectorDOMDebuggerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698