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

Unified Diff: src/string-stream.h

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/snapshot-source-sink.h ('k') | src/unique.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/string-stream.h
diff --git a/src/string-stream.h b/src/string-stream.h
index e2475ff3b3921ecb5dbffdab57751cd4a782e4d0..fca1d4beab9329a0047f10b3f3411da592119913 100644
--- a/src/string-stream.h
+++ b/src/string-stream.h
@@ -24,18 +24,18 @@ class StringAllocator {
// Normal allocator uses new[] and delete[].
-class HeapStringAllocator V8_FINAL : public StringAllocator {
+class HeapStringAllocator FINAL : public StringAllocator {
public:
~HeapStringAllocator() { DeleteArray(space_); }
- virtual char* allocate(unsigned bytes) V8_OVERRIDE;
- virtual char* grow(unsigned* bytes) V8_OVERRIDE;
+ virtual char* allocate(unsigned bytes) OVERRIDE;
+ virtual char* grow(unsigned* bytes) OVERRIDE;
private:
char* space_;
};
-class FmtElm V8_FINAL {
+class FmtElm FINAL {
public:
FmtElm(int value) : type_(INT) { // NOLINT
data_.u_int_ = value;
@@ -75,7 +75,7 @@ class FmtElm V8_FINAL {
};
-class StringStream V8_FINAL {
+class StringStream FINAL {
public:
explicit StringStream(StringAllocator* allocator):
allocator_(allocator),
« no previous file with comments | « src/snapshot-source-sink.h ('k') | src/unique.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698