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

Unified Diff: src/d8.cc

Issue 526223002: Use Chrome compatible naming for compiler specifics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: mips Created 6 years, 3 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/x64/instruction-selector-x64.cc ('k') | src/elements.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/d8.cc
diff --git a/src/d8.cc b/src/d8.cc
index 6ae2ceb8a298ec99d33b1f92a5a7a17f847dbb21..819db82ae462a61ebbfbe63a4f3b29c60547c538 100644
--- a/src/d8.cc
+++ b/src/d8.cc
@@ -1529,13 +1529,13 @@ class ShellArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
class MockArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
public:
- virtual void* Allocate(size_t) V8_OVERRIDE {
+ virtual void* Allocate(size_t) OVERRIDE {
return malloc(0);
}
- virtual void* AllocateUninitialized(size_t length) V8_OVERRIDE {
+ virtual void* AllocateUninitialized(size_t length) OVERRIDE {
return malloc(0);
}
- virtual void Free(void* p, size_t) V8_OVERRIDE {
+ virtual void Free(void* p, size_t) OVERRIDE {
free(p);
}
};
« no previous file with comments | « src/compiler/x64/instruction-selector-x64.cc ('k') | src/elements.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698