author | Gregory Szorc <gps@mozilla.com> |
Wed, 28 Jan 2015 13:37:00 -0800 | |
branch | MOBILE170_2012100914_RELBRANCH |
changeset 110535 | efe7dc56f512e78244990f3b1fb8dff3b4d69dcd |
parent 108463 | a16372ce30b5f6b747246b01fcd215a4bf3b6342 |
permissions | -rw-r--r-- |
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "Hal.h" namespace mozilla { namespace hal_impl { bool EnableAlarm() { return false; } void DisableAlarm() { } bool SetAlarm(int32_t aSeconds, int32_t aNanoseconds) { return false; } } // hal_impl } // namespace mozilla