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

Unified Diff: sky/engine/core/dom/ExecutionContext.cpp

Issue 683703003: Remove various Heap* types. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/core/dom/ExecutionContext.h ('k') | sky/engine/core/fetch/MemoryCache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/ExecutionContext.cpp
diff --git a/sky/engine/core/dom/ExecutionContext.cpp b/sky/engine/core/dom/ExecutionContext.cpp
index 7e619f160ebaf73d998c6373beb99511585312a2..940dfcaa45d75ea582b74cbe97fe584c262ec7b1 100644
--- a/sky/engine/core/dom/ExecutionContext.cpp
+++ b/sky/engine/core/dom/ExecutionContext.cpp
@@ -49,10 +49,6 @@ public:
, m_callStack(callStack)
{
}
- void trace(Visitor* visitor)
- {
- visitor->trace(m_callStack);
- }
String m_errorMessage;
int m_lineNumber;
int m_columnNumber;
@@ -248,13 +244,4 @@ bool ExecutionContext::isIteratingOverObservers() const
return m_lifecycleNotifier && m_lifecycleNotifier->isIteratingOverObservers();
}
-void ExecutionContext::trace(Visitor* visitor)
-{
-#if ENABLE(OILPAN)
- visitor->trace(m_pendingExceptions);
-#endif
- Supplementable<ExecutionContext>::trace(visitor);
- LifecycleContext<ExecutionContext>::trace(visitor);
-}
-
} // namespace blink
« no previous file with comments | « sky/engine/core/dom/ExecutionContext.h ('k') | sky/engine/core/fetch/MemoryCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698