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

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

Issue 423803002: Cosmetic change to base class lists. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/inspector/PageDebuggerAgent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 class EventTarget; 48 class EventTarget;
49 class InspectorDOMAgent; 49 class InspectorDOMAgent;
50 class InspectorDebuggerAgent; 50 class InspectorDebuggerAgent;
51 class InspectorFrontend; 51 class InspectorFrontend;
52 class InstrumentingAgents; 52 class InstrumentingAgents;
53 class JSONObject; 53 class JSONObject;
54 class Node; 54 class Node;
55 55
56 typedef String ErrorString; 56 typedef String ErrorString;
57 57
58 class InspectorDOMDebuggerAgent FINAL : 58 class InspectorDOMDebuggerAgent FINAL
59 public InspectorBaseAgent<InspectorDOMDebuggerAgent>, 59 : public InspectorBaseAgent<InspectorDOMDebuggerAgent>
60 public InspectorDebuggerAgent::Listener, 60 , public InspectorDebuggerAgent::Listener
61 public InspectorDOMAgent::Listener, 61 , public InspectorDOMAgent::Listener
62 public InspectorBackendDispatcher::DOMDebuggerCommandHandler { 62 , public InspectorBackendDispatcher::DOMDebuggerCommandHandler {
63 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent); 63 WTF_MAKE_NONCOPYABLE(InspectorDOMDebuggerAgent);
64 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorDOMDebuggerAgent); 64 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorDOMDebuggerAgent);
65 public: 65 public:
66 static PassOwnPtrWillBeRawPtr<InspectorDOMDebuggerAgent> create(InspectorDOM Agent*, InspectorDebuggerAgent*); 66 static PassOwnPtrWillBeRawPtr<InspectorDOMDebuggerAgent> create(InspectorDOM Agent*, InspectorDebuggerAgent*);
67 67
68 virtual ~InspectorDOMDebuggerAgent(); 68 virtual ~InspectorDOMDebuggerAgent();
69 virtual void trace(Visitor*) OVERRIDE; 69 virtual void trace(Visitor*) OVERRIDE;
70 70
71 // DOMDebugger API for InspectorFrontend 71 // DOMDebugger API for InspectorFrontend
72 virtual void setXHRBreakpoint(ErrorString*, const String& url) OVERRIDE; 72 virtual void setXHRBreakpoint(ErrorString*, const String& url) OVERRIDE;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 131 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
132 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; 132 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent;
133 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints; 133 WillBeHeapHashMap<RawPtrWillBeMember<Node>, uint32_t> m_domBreakpoints;
134 bool m_pauseInNextEventListener; 134 bool m_pauseInNextEventListener;
135 }; 135 };
136 136
137 } // namespace blink 137 } // namespace blink
138 138
139 139
140 #endif // !defined(InspectorDOMDebuggerAgent_h) 140 #endif // !defined(InspectorDOMDebuggerAgent_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/PageDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698