From ff33c3ae09e4f0cf317af1cb3301e4ae4adfb20a Mon Sep 17 00:00:00 2001 From: Thomas Zimmermann Date: Mon, 14 Jul 2014 13:43:11 +0200 Subject: [PATCH] Bug 1038097: Include in BluetoothInterface.cpp, r=shuang This patch adds a missing include statement for to BluetoothInterface.cpp. This fixes the build for flatfish devices. For safety, the patch also adds an include statement for , which might be necessary for several functions. --- dom/bluetooth/bluedroid/BluetoothInterface.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dom/bluetooth/bluedroid/BluetoothInterface.cpp b/dom/bluetooth/bluedroid/BluetoothInterface.cpp index 89845419b4e..6f61c128dff 100644 --- a/dom/bluetooth/bluedroid/BluetoothInterface.cpp +++ b/dom/bluetooth/bluedroid/BluetoothInterface.cpp @@ -4,6 +4,8 @@ * 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 +#include #include #include "base/message_loop.h" #include "BluetoothInterface.h"