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

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

Issue 809023003: Oilpan: fix build after r187362. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010-2011 Google Inc. All rights reserved. 3 * Copyright (C) 2010-2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 class ScriptSourceCode; 61 class ScriptSourceCode;
62 62
63 typedef String ErrorString; 63 typedef String ErrorString;
64 64
65 class InspectorDebuggerAgent 65 class InspectorDebuggerAgent
66 : public InspectorBaseAgent<InspectorDebuggerAgent> 66 : public InspectorBaseAgent<InspectorDebuggerAgent>
67 , public ScriptDebugListener 67 , public ScriptDebugListener
68 , public InspectorBackendDispatcher::DebuggerCommandHandler { 68 , public InspectorBackendDispatcher::DebuggerCommandHandler {
69 WTF_MAKE_NONCOPYABLE(InspectorDebuggerAgent); 69 WTF_MAKE_NONCOPYABLE(InspectorDebuggerAgent);
70 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 70 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
71 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorDebuggerAgent);
72 public: 71 public:
73 enum BreakpointSource { 72 enum BreakpointSource {
74 UserBreakpointSource, 73 UserBreakpointSource,
75 DebugCommandBreakpointSource, 74 DebugCommandBreakpointSource,
76 MonitorCommandBreakpointSource 75 MonitorCommandBreakpointSource
77 }; 76 };
78 77
79 static const char backtraceObjectGroup[]; 78 static const char backtraceObjectGroup[];
80 79
81 ~InspectorDebuggerAgent() override; 80 ~InspectorDebuggerAgent() override;
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 unsigned m_maxAsyncCallStackDepth; 283 unsigned m_maxAsyncCallStackDepth;
285 RefPtrWillBeMember<AsyncCallChain> m_currentAsyncCallChain; 284 RefPtrWillBeMember<AsyncCallChain> m_currentAsyncCallChain;
286 unsigned m_nestedAsyncCallCount; 285 unsigned m_nestedAsyncCallCount;
287 bool m_performingAsyncStepIn; 286 bool m_performingAsyncStepIn;
288 }; 287 };
289 288
290 } // namespace blink 289 } // namespace blink
291 290
292 291
293 #endif // !defined(InspectorDebuggerAgent_h) 292 #endif // !defined(InspectorDebuggerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698