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

Unified Diff: src/base/platform/platform-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, 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/base/platform/mutex.h ('k') | src/base/platform/semaphore.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/base/platform/platform-unittest.cc
diff --git a/src/base/platform/platform-unittest.cc b/src/base/platform/platform-unittest.cc
index 58ce5b6e11439af210ee98be3ab805c0c0a084f1..06fbee004227b84ecfbe717bf45bea7f4c66e6be 100644
--- a/src/base/platform/platform-unittest.cc
+++ b/src/base/platform/platform-unittest.cc
@@ -30,10 +30,10 @@ TEST(OS, GetCurrentProcessId) {
namespace {
-class SelfJoinThread V8_FINAL : public Thread {
+class SelfJoinThread FINAL : public Thread {
public:
SelfJoinThread() : Thread(Options("SelfJoinThread")) {}
- virtual void Run() V8_OVERRIDE { Join(); }
+ virtual void Run() OVERRIDE { Join(); }
};
} // namespace
@@ -61,7 +61,7 @@ class ThreadLocalStorageTest : public Thread, public ::testing::Test {
}
}
- virtual void Run() V8_FINAL V8_OVERRIDE {
+ virtual void Run() FINAL OVERRIDE {
for (size_t i = 0; i < arraysize(keys_); i++) {
CHECK(!Thread::HasThreadLocal(keys_[i]));
}
« no previous file with comments | « src/base/platform/mutex.h ('k') | src/base/platform/semaphore.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698