OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <string> | 5 #include <string> |
6 | 6 |
7 #include "gtest/gtest.h" | 7 #include "gtest/gtest.h" |
8 | 8 |
9 #if defined(SEL_LDR) | 9 #if defined(SEL_LDR) |
10 | 10 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 ::testing::UnitTest::GetInstance()->listeners() | 57 ::testing::UnitTest::GetInstance()->listeners() |
58 .Append(new GTestEventListener()); | 58 .Append(new GTestEventListener()); |
59 return RUN_ALL_TESTS(); | 59 return RUN_ALL_TESTS(); |
60 } | 60 } |
61 | 61 |
62 // Register the function to call once the Instance Object is initialized. | 62 // Register the function to call once the Instance Object is initialized. |
63 // see: pappi_simple/ps_main.h | 63 // see: pappi_simple/ps_main.h |
64 PPAPI_SIMPLE_REGISTER_MAIN(example_main); | 64 PPAPI_SIMPLE_REGISTER_MAIN(example_main); |
65 | 65 |
66 #endif | 66 #endif |
OLD | NEW |