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

Unified Diff: src/isolate.h

Issue 2220993003: [api] Templatize do_callback parameter in CallDepthScope (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: formatting Created 4 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 | « src/api.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index 2ef393c6f69b77cd254c27370b2215ffa62cc0f5..665349698f533f33232accac242155d25f44acd5 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -1497,9 +1497,9 @@ class SaveContext BASE_EMBEDDED {
Isolate* isolate() { return isolate_; }
private:
- Isolate* isolate_;
+ Isolate* const isolate_;
Handle<Context> context_;
- SaveContext* prev_;
+ SaveContext* const prev_;
Address c_entry_fp_;
};
« no previous file with comments | « src/api.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698