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

Unified Diff: test/base-unittests/platform/platform-unittest.cc

Issue 484643002: Version 3.28.71.3 (merged r23081) (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.28
Patch Set: 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 | « test/base-unittests/platform/condition-variable-unittest.cc ('k') | test/cctest/cctest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/base-unittests/platform/platform-unittest.cc
diff --git a/test/base-unittests/platform/platform-unittest.cc b/test/base-unittests/platform/platform-unittest.cc
index 8a99af043242c072ea8c8bdbdf3b7cf25d704aaa..3530ff8073a386c72ed8ebcb2de350c33227569e 100644
--- a/test/base-unittests/platform/platform-unittest.cc
+++ b/test/base-unittests/platform/platform-unittest.cc
@@ -37,7 +37,7 @@ namespace {
class SelfJoinThread V8_FINAL : public Thread {
public:
- SelfJoinThread() : Thread("SelfJoinThread") {}
+ SelfJoinThread() : Thread(Options("SelfJoinThread")) {}
virtual void Run() V8_OVERRIDE { Join(); }
};
@@ -55,7 +55,7 @@ namespace {
class ThreadLocalStorageTest : public Thread, public ::testing::Test {
public:
- ThreadLocalStorageTest() : Thread("ThreadLocalStorageTest") {
+ ThreadLocalStorageTest() : Thread(Options("ThreadLocalStorageTest")) {
for (size_t i = 0; i < ARRAY_SIZE(keys_); ++i) {
keys_[i] = Thread::CreateThreadLocalKey();
}
« no previous file with comments | « test/base-unittests/platform/condition-variable-unittest.cc ('k') | test/cctest/cctest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698