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

Unified Diff: src/libplatform/task-queue-unittest.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, 4 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/libplatform/default-platform.h ('k') | src/libplatform/worker-thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/libplatform/task-queue-unittest.cc
diff --git a/src/libplatform/task-queue-unittest.cc b/src/libplatform/task-queue-unittest.cc
index 397532aebd35388760453a6bdf44658e12e7a620..9a186589f7bb8b7b3258cc700f897704984f0cf5 100644
--- a/src/libplatform/task-queue-unittest.cc
+++ b/src/libplatform/task-queue-unittest.cc
@@ -21,12 +21,12 @@ struct MockTask : public Task {
};
-class TaskQueueThread V8_FINAL : public base::Thread {
+class TaskQueueThread FINAL : public base::Thread {
public:
explicit TaskQueueThread(TaskQueue* queue)
: Thread(Options("libplatform TaskQueueThread")), queue_(queue) {}
- virtual void Run() V8_OVERRIDE { EXPECT_THAT(queue_->GetNext(), IsNull()); }
+ virtual void Run() OVERRIDE { EXPECT_THAT(queue_->GetNext(), IsNull()); }
private:
TaskQueue* queue_;
« no previous file with comments | « src/libplatform/default-platform.h ('k') | src/libplatform/worker-thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698