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

Unified Diff: runtime/vm/handles.h

Issue 1310463005: - Ensure that HandleScope is initialized with a thread. (Remove (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address review comments Created 5 years, 4 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/debugger_api_impl.cc ('k') | runtime/vm/handles.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/handles.h
diff --git a/runtime/vm/handles.h b/runtime/vm/handles.h
index f86d0bb860846a5142edb1d4dc13a65f5bab7d4a..343d13908fa81530767f358868ad996c68c5dbe8 100644
--- a/runtime/vm/handles.h
+++ b/runtime/vm/handles.h
@@ -301,8 +301,6 @@ class VMHandles : public Handles<kVMHandleSizeInWords,
class HandleScope : public StackResource {
public:
explicit HandleScope(Thread* thread);
- // DEPRECATED: Use Thread version.
- explicit HandleScope(Isolate* isolate);
~HandleScope();
private:
@@ -337,9 +335,6 @@ class HandleScope : public StackResource {
class NoHandleScope : public StackResource {
public:
explicit NoHandleScope(Thread* thread);
- // DEPRECATED: Use Thread version.
- explicit NoHandleScope(Isolate* isolate);
- NoHandleScope();
~NoHandleScope();
private:
« no previous file with comments | « runtime/vm/debugger_api_impl.cc ('k') | runtime/vm/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698