// Copyright 2014 Google Inc. All Rights Reserved. // // Mock implementation of OEMCrypto APIs // #include "oemcrypto_engine_mock.h" namespace wvoec_mock { CryptoEngine* CryptoEngine::MakeCryptoEngine(wvcdm::FileSystem* file_system) { return new CryptoEngine(file_system); } } // namespace wvoec_mock