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

Unified Diff: test/cctest/test-api.cc

Issue 201133006: Fix Windows compile problem. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-api.cc
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
index 27178474c3b197824135279a81be781c5e19ae08..38b41d9296712cec0160482c91071b77b854e033 100644
--- a/test/cctest/test-api.cc
+++ b/test/cctest/test-api.cc
@@ -18745,7 +18745,7 @@ void PrologueCallbackAlloc(v8::Isolate* isolate,
CHECK(!obj.IsEmpty());
CcTest::heap()->CollectAllGarbage(
- i::Heap::Heap::kAbortIncrementalMarkingMask);
+ i::Heap::kAbortIncrementalMarkingMask);
}
@@ -18765,7 +18765,7 @@ void EpilogueCallbackAlloc(v8::Isolate* isolate,
CHECK(!obj.IsEmpty());
CcTest::heap()->CollectAllGarbage(
- i::Heap::Heap::kAbortIncrementalMarkingMask);
+ i::Heap::kAbortIncrementalMarkingMask);
}
@@ -18841,7 +18841,7 @@ TEST(GCCallbacks) {
isolate->AddGCPrologueCallback(PrologueCallbackAlloc);
isolate->AddGCEpilogueCallback(EpilogueCallbackAlloc);
CcTest::heap()->CollectAllGarbage(
- i::Heap::Heap::kAbortIncrementalMarkingMask);
+ i::Heap::kAbortIncrementalMarkingMask);
CHECK_EQ(1, prologue_call_count_alloc);
CHECK_EQ(1, epilogue_call_count_alloc);
isolate->RemoveGCPrologueCallback(PrologueCallbackAlloc);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698