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

Unified Diff: runtime/vm/object.h

Issue 1838373002: Remove unnecessary isolate argument from some visitors (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Cleanup Created 4 years, 9 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 | « runtime/vm/heap_test.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 15d488e1f90d6884fff0b5423cf38d78c38784bb..8a818f64b0353bc2ddc39183286d0f73890a9f79 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -4636,8 +4636,7 @@ class Code : public Object {
class SlowFindRawCodeVisitor : public FindObjectVisitor {
public:
- explicit SlowFindRawCodeVisitor(uword pc)
- : FindObjectVisitor(Isolate::Current()), pc_(pc) { }
+ explicit SlowFindRawCodeVisitor(uword pc) : pc_(pc) { }
virtual ~SlowFindRawCodeVisitor() { }
// Check if object matches find condition.
« no previous file with comments | « runtime/vm/heap_test.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698