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

Unified Diff: src/ostreams.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/objects-inl.h ('k') | src/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ostreams.h
diff --git a/src/ostreams.h b/src/ostreams.h
index de6a8446a08a7bf301d6b8b5a0d564f5e729fa22..bd53aed8f753b9c18f15573060f570cfb3abd1d9 100644
--- a/src/ostreams.h
+++ b/src/ostreams.h
@@ -83,8 +83,8 @@ class OStringStream: public OStream {
// Internally, our character data is always 0-terminated.
const char* c_str() const { return data(); }
- virtual OStringStream& write(const char* s, size_t n) V8_OVERRIDE;
- virtual OStringStream& flush() V8_OVERRIDE;
+ virtual OStringStream& write(const char* s, size_t n) OVERRIDE;
+ virtual OStringStream& flush() OVERRIDE;
private:
// Primitive allocator interface, can be extracted if needed.
@@ -107,8 +107,8 @@ class OFStream: public OStream {
explicit OFStream(FILE* f) : f_(f) { }
virtual ~OFStream() { }
- virtual OFStream& write(const char* s, size_t n) V8_OVERRIDE;
- virtual OFStream& flush() V8_OVERRIDE;
+ virtual OFStream& write(const char* s, size_t n) OVERRIDE;
+ virtual OFStream& flush() OVERRIDE;
private:
FILE* const f_;
« no previous file with comments | « src/objects-inl.h ('k') | src/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698