Index: test/cctest/test-cpu-profiler.cc |
diff --git a/test/cctest/test-cpu-profiler.cc b/test/cctest/test-cpu-profiler.cc |
index 95930b4c2d5d6ee1da80890f779b6ad6c20ea345..36bd1ff9b624e43f039ad705af53d1c49ea244f0 100644 |
--- a/test/cctest/test-cpu-profiler.cc |
+++ b/test/cctest/test-cpu-profiler.cc |
@@ -802,9 +802,7 @@ TEST(NativeAccessorMonomorphicIC) { |
const v8::CpuProfileNode* root = profile->GetTopDownRoot(); |
const v8::CpuProfileNode* startNode = GetChild(root, "start"); |
- // TODO(yurys): in LoadIC should be changed to report external callback |
- // invocation. See r13768 where it was LoadCallbackProperty was removed. |
- // GetChild(startNode, "get foo"); |
+ GetChild(startNode, "get foo"); |
GetChild(startNode, "set foo"); |
cpu_profiler->DeleteAllCpuProfiles(); |
@@ -911,9 +909,8 @@ TEST(NativeMethodMonomorphicIC) { |
const v8::CpuProfileNode* root = profile->GetTopDownRoot(); |
GetChild(root, "start"); |
- // TODO(yurys): in CallIC should be changed to report external callback |
- // invocation. |
- // GetChild(startNode, "fooMethod"); |
+ const v8::CpuProfileNode* startNode = GetChild(root, "start"); |
+ GetChild(startNode, "fooMethod"); |
cpu_profiler->DeleteAllCpuProfiles(); |
} |