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

Unified Diff: src/snapshot-source-sink.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/serialize.cc ('k') | src/string-stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/snapshot-source-sink.h
diff --git a/src/snapshot-source-sink.h b/src/snapshot-source-sink.h
index bda6455e8b9b7d531e380e14b9cb6755db4b27d6..3c64bca73df29981b212c5842224a0ccc23f2bed 100644
--- a/src/snapshot-source-sink.h
+++ b/src/snapshot-source-sink.h
@@ -17,7 +17,7 @@ namespace internal {
*
* Note: Memory ownership remains with callee.
*/
-class SnapshotByteSource V8_FINAL {
+class SnapshotByteSource FINAL {
public:
SnapshotByteSource(const byte* array, int length);
~SnapshotByteSource();
@@ -99,8 +99,8 @@ class DummySnapshotSink : public SnapshotByteSink {
class DebugSnapshotSink : public SnapshotByteSink {
public:
explicit DebugSnapshotSink(SnapshotByteSink* chained) : sink_(chained) {}
- virtual void Put(byte b, const char* description) V8_OVERRIDE;
- virtual int Position() V8_OVERRIDE { return sink_->Position(); }
+ virtual void Put(byte b, const char* description) OVERRIDE;
+ virtual int Position() OVERRIDE { return sink_->Position(); }
private:
SnapshotByteSink* sink_;
@@ -110,10 +110,10 @@ class DebugSnapshotSink : public SnapshotByteSink {
class ListSnapshotSink : public i::SnapshotByteSink {
public:
explicit ListSnapshotSink(i::List<byte>* data) : data_(data) {}
- virtual void Put(byte b, const char* description) V8_OVERRIDE {
+ virtual void Put(byte b, const char* description) OVERRIDE {
data_->Add(b);
}
- virtual int Position() V8_OVERRIDE { return data_->length(); }
+ virtual int Position() OVERRIDE { return data_->length(); }
private:
i::List<byte>* data_;
« no previous file with comments | « src/serialize.cc ('k') | src/string-stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698