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

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

Issue 558673003: Oilpan: move PromiseTracker to the heap (fix build after r181646.) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Non-oilpan compile fixes Created 6 years, 3 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
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_promiseTracker.clear(); 1497 m_promiseTracker.clear();
1498 if (m_frontend) 1498 if (m_frontend)
1499 m_frontend->globalObjectCleared(); 1499 m_frontend->globalObjectCleared();
1500 } 1500 }
1501 1501
1502 void InspectorDebuggerAgent::trace(Visitor* visitor) 1502 void InspectorDebuggerAgent::trace(Visitor* visitor)
1503 { 1503 {
1504 visitor->trace(m_injectedScriptManager); 1504 visitor->trace(m_injectedScriptManager);
1505 visitor->trace(m_listener); 1505 visitor->trace(m_listener);
1506 visitor->trace(m_asyncCallStackTracker); 1506 visitor->trace(m_asyncCallStackTracker);
1507 #if ENABLE(OILPAN)
1508 visitor->trace(m_promiseTracker);
1509 #endif
1507 InspectorBaseAgent::trace(visitor); 1510 InspectorBaseAgent::trace(visitor);
1508 } 1511 }
1509 1512
1510 } // namespace blink 1513 } // namespace blink
1511
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/PromiseTracker.h » ('j') | Source/core/inspector/PromiseTracker.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698