dom/bluetooth/bluedroid/BluetoothUtils.h

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     1 /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
     2 /* vim: set ts=2 et sw=2 tw=80: */
     3 /* This Source Code Form is subject to the terms of the Mozilla Public
     4  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
     5  * You can obtain one at http://mozilla.org/MPL/2.0/. */
     7 #ifndef mozilla_dom_bluetooth_bluetoothutils_h__
     8 #define mozilla_dom_bluetooth_bluetoothutils_h__
    10 #include <hardware/bluetooth.h>
    12 #include "BluetoothCommon.h"
    13 #include "js/TypeDecls.h"
    15 BEGIN_BLUETOOTH_NAMESPACE
    17 class BluetoothNamedValue;
    18 class BluetoothValue;
    19 class BluetoothReplyRunnable;
    21 const bt_interface_t*
    22 GetBluetoothInterface();
    24 void
    25 StringToBdAddressType(const nsAString& aBdAddress,
    26                       bt_bdaddr_t *aRetBdAddressType);
    28 void
    29 BdAddressTypeToString(bt_bdaddr_t* aBdAddressType,
    30                       nsAString& aRetBdAddress);
    32 bool
    33 SetJsObject(JSContext* aContext,
    34             const BluetoothValue& aValue,
    35             JS::Handle<JSObject*> aObj);
    37 bool
    38 BroadcastSystemMessage(const nsAString& aType,
    39                        const BluetoothValue& aData);
    41 void
    42 DispatchBluetoothReply(BluetoothReplyRunnable* aRunnable,
    43                        const BluetoothValue& aValue,
    44                        const nsAString& aErrorStr);
    46 void
    47 DispatchStatusChangedEvent(const nsAString& aType,
    48                            const nsAString& aDeviceAddress,
    49                            bool aStatus);
    51 END_BLUETOOTH_NAMESPACE
    53 #endif

mercurial