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

Unified Diff: src/frames.h

Issue 2714373003: [wasm] Several unrelated cleanups (Closed)
Patch Set: Argh. Fix. Created 3 years, 10 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/compiler/wasm-compiler.cc ('k') | src/wasm/module-decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/frames.h
diff --git a/src/frames.h b/src/frames.h
index 2255b812b71265219c2aa5b38c3b86df265e2342..c19e7555bc9fc040e1e8609ecd558ee0af246abf 100644
--- a/src/frames.h
+++ b/src/frames.h
@@ -1274,7 +1274,7 @@ class BuiltinFrame final : public JavaScriptFrame {
friend class StackFrameIteratorBase;
};
-class WasmCompiledFrame : public StandardFrame {
+class WasmCompiledFrame final : public StandardFrame {
public:
Type type() const override { return WASM_COMPILED; }
@@ -1316,7 +1316,7 @@ class WasmCompiledFrame : public StandardFrame {
friend class StackFrameIteratorBase;
};
-class WasmInterpreterEntryFrame : public StandardFrame {
+class WasmInterpreterEntryFrame final : public StandardFrame {
public:
Type type() const override { return WASM_INTERPRETER_ENTRY; }
« no previous file with comments | « src/compiler/wasm-compiler.cc ('k') | src/wasm/module-decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698