Reviewers: Yang,

Message:
Committed patchset #1 manually as r19986 (tree was closed).

Description:
Fix Windows compile problem.

BUG=
[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=19986

Please review this at https://codereview.chromium.org/201133006/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+3, -3 lines):
  M test/cctest/test-api.cc


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);


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to