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

Unified Diff: src/code-stubs.h

Issue 304633004: CallIC::PrintState() was incorrectly declared as V8_FINAL. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index 5fba1cf46b28f42d813cecd4ef7ea2db79161900..520a40509da50a8e5127526ad61dbb85d366aef8 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -818,7 +818,7 @@ class CallICStub: public PlatformCodeStub {
protected:
virtual int MinorKey() { return GetExtraICState(); }
- virtual void PrintState(StringStream* stream) V8_FINAL V8_OVERRIDE;
+ virtual void PrintState(StringStream* stream) V8_OVERRIDE;
virtual CodeStub::Major MajorKey() { return CallIC; }
@@ -837,7 +837,7 @@ class CallIC_ArrayStub: public CallICStub {
virtual void Generate(MacroAssembler* masm);
protected:
- virtual void PrintState(StringStream* stream) V8_FINAL V8_OVERRIDE;
+ virtual void PrintState(StringStream* stream) V8_OVERRIDE;
virtual CodeStub::Major MajorKey() { return CallIC_Array; }
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698