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

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

Issue 756423005: Oilpan: fix build after r186577. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/inspector/WorkerDebuggerAgent.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) 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 61
62 typedef String ErrorString; 62 typedef String ErrorString;
63 63
64 class InspectorDebuggerAgent 64 class InspectorDebuggerAgent
65 : public InspectorBaseAgent<InspectorDebuggerAgent> 65 : public InspectorBaseAgent<InspectorDebuggerAgent>
66 , public ScriptDebugListener 66 , public ScriptDebugListener
67 , public AsyncCallStackTracker::Listener 67 , public AsyncCallStackTracker::Listener
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);
71 public: 72 public:
72 enum BreakpointSource { 73 enum BreakpointSource {
73 UserBreakpointSource, 74 UserBreakpointSource,
74 DebugCommandBreakpointSource, 75 DebugCommandBreakpointSource,
75 MonitorCommandBreakpointSource 76 MonitorCommandBreakpointSource
76 }; 77 };
77 78
78 static const char backtraceObjectGroup[]; 79 static const char backtraceObjectGroup[];
79 80
80 virtual ~InspectorDebuggerAgent(); 81 virtual ~InspectorDebuggerAgent();
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 unsigned m_cachedSkipStackGeneration; 272 unsigned m_cachedSkipStackGeneration;
272 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; 273 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker;
273 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; 274 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker;
274 HashSet<int> m_asyncOperationIdsForStepInto; 275 HashSet<int> m_asyncOperationIdsForStepInto;
275 }; 276 };
276 277
277 } // namespace blink 278 } // namespace blink
278 279
279 280
280 #endif // !defined(InspectorDebuggerAgent_h) 281 #endif // !defined(InspectorDebuggerAgent_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/WorkerDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698