Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "base/test/native_library_test_utils.h" | |
| 6 | |
| 7 namespace { | |
| 8 | |
| 9 int g_static_value = 0; | |
| 10 | |
| 11 } // namespace | |
| 12 | |
| 13 extern "C" { | |
| 14 | |
| 15 int g_native_library_exported_value = 0; | |
| 16 | |
| 17 int NativeLibraryTestIncrement() { return ++g_static_value; } | |
| 18 | |
| 19 } // extern "C" | |
| OLD | NEW |