Chromium Code Reviews| Index: test/cctest/compiler/test-graph-visualizer.cc |
| diff --git a/test/cctest/compiler/test-graph-visualizer.cc b/test/cctest/compiler/test-graph-visualizer.cc |
| index 2d6338d06059305f1cbd23c4631f99ea2091afb5..19b35a257d6aa0df7f952e3f44d1751904b561f6 100644 |
| --- a/test/cctest/compiler/test-graph-visualizer.cc |
| +++ b/test/cctest/compiler/test-graph-visualizer.cc |
| @@ -17,6 +17,8 @@ |
| #include "src/compiler/source-position.h" |
| #include "src/compiler/verifier.h" |
| +namespace test_graph_visualizer { |
|
ulan
2015/06/01 13:08:24
Now some tests are namespaced and others are not.
Erik Corry
2015/06/01 15:15:47
test namespaces removed
|
| + |
| using namespace v8::internal; |
| using namespace v8::internal::compiler; |
| @@ -125,3 +127,5 @@ TEST(NodeNetworkOfDummiesReachableFromEnd) { |
| SourcePositionTable table(&graph); |
| os << AsJSON(graph, &table); |
| } |
| + |
| +} // namespace test_graph_visualizer |