| OLD | NEW |
| 1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 /* Copyright (c) 2010 The Chromium OS 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 * Mock rollback index library for testing. | 5 * Mock rollback index library for testing. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "rollback_index.h" | 8 #include "rollback_index.h" |
| 9 | 9 |
| 10 #include <stdint.h> | 10 #include <stdint.h> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 case KERNEL_VERSION: | 53 case KERNEL_VERSION: |
| 54 g_kernel_version = version; | 54 g_kernel_version = version; |
| 55 break; | 55 break; |
| 56 } | 56 } |
| 57 #ifndef NDEBUG | 57 #ifndef NDEBUG |
| 58 debug("Rollback Index Library Mock: Stored Version written.\n"); | 58 debug("Rollback Index Library Mock: Stored Version written.\n"); |
| 59 #endif | 59 #endif |
| 60 return 1; | 60 return 1; |
| 61 } | 61 } |
| 62 | 62 |
| 63 void LockStoredVersion(int type) { | 63 void LockFirmwareVersions() { |
| 64 #ifndef NDEBUG | 64 #ifndef NDEBUG |
| 65 debug("Rollback Index Library Mock: Version Locked.\n"); | 65 debug("Rollback Index Library Mock: Firmware Versions Locked.\n"); |
| 66 #endif | 66 #endif |
| 67 } | 67 } |
| 68 void LockKernelVersionsByLockingPP() { |
| 69 #ifndef NDEBUG |
| 70 debug("Rollback Index Library Mock: Kernel Versions Locked.\n"); |
| 71 #endif |
| 72 } |
| OLD | NEW |