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

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

Issue 796863002: Oilpan: fix build after r186944. (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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 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 1486 matching lines...) Expand 10 before | Expand all | Expand 10 after
1497 m_frontend->globalObjectCleared(); 1497 m_frontend->globalObjectCleared();
1498 } 1498 }
1499 1499
1500 void InspectorDebuggerAgent::trace(Visitor* visitor) 1500 void InspectorDebuggerAgent::trace(Visitor* visitor)
1501 { 1501 {
1502 visitor->trace(m_injectedScriptManager); 1502 visitor->trace(m_injectedScriptManager);
1503 visitor->trace(m_listener); 1503 visitor->trace(m_listener);
1504 visitor->trace(m_asyncCallStackTracker); 1504 visitor->trace(m_asyncCallStackTracker);
1505 #if ENABLE(OILPAN) 1505 #if ENABLE(OILPAN)
1506 visitor->trace(m_promiseTracker); 1506 visitor->trace(m_promiseTracker);
1507 visitor->trace(m_asyncOperationsForStepInto);
1507 #endif 1508 #endif
1508 InspectorBaseAgent::trace(visitor); 1509 InspectorBaseAgent::trace(visitor);
1509 } 1510 }
1510 1511
1511 } // namespace blink 1512 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698