Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* vim: set ts=2 et sw=2 tw=80: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef _AtkSocketAccessible_H_ |
michael@0 | 8 | #define _AtkSocketAccessible_H_ |
michael@0 | 9 | |
michael@0 | 10 | #include "AccessibleWrap.h" |
michael@0 | 11 | |
michael@0 | 12 | // This file gets included by nsAccessibilityService.cpp, which can't include |
michael@0 | 13 | // atk.h (or glib.h), so we can't rely on it being included. |
michael@0 | 14 | #ifdef __ATK_H__ |
michael@0 | 15 | extern "C" typedef void (*AtkSocketEmbedType) (AtkSocket*, gchar*); |
michael@0 | 16 | #else |
michael@0 | 17 | extern "C" typedef void (*AtkSocketEmbedType) (void*, void*); |
michael@0 | 18 | #endif |
michael@0 | 19 | |
michael@0 | 20 | namespace mozilla { |
michael@0 | 21 | namespace a11y { |
michael@0 | 22 | |
michael@0 | 23 | /** |
michael@0 | 24 | * Provides a AccessibleWrap wrapper around AtkSocket for out-of-process |
michael@0 | 25 | * accessibles. |
michael@0 | 26 | */ |
michael@0 | 27 | class AtkSocketAccessible : public AccessibleWrap |
michael@0 | 28 | { |
michael@0 | 29 | public: |
michael@0 | 30 | |
michael@0 | 31 | // Soft references to AtkSocket |
michael@0 | 32 | static AtkSocketEmbedType g_atk_socket_embed; |
michael@0 | 33 | #ifdef __ATK_H__ |
michael@0 | 34 | static GType g_atk_socket_type; |
michael@0 | 35 | #endif |
michael@0 | 36 | static const char* sATKSocketEmbedSymbol; |
michael@0 | 37 | static const char* sATKSocketGetTypeSymbol; |
michael@0 | 38 | |
michael@0 | 39 | /* |
michael@0 | 40 | * True if the current Atk version supports AtkSocket and it was correctly |
michael@0 | 41 | * loaded. |
michael@0 | 42 | */ |
michael@0 | 43 | static bool gCanEmbed; |
michael@0 | 44 | |
michael@0 | 45 | AtkSocketAccessible(nsIContent* aContent, DocAccessible* aDoc, |
michael@0 | 46 | const nsCString& aPlugId); |
michael@0 | 47 | |
michael@0 | 48 | virtual void Shutdown(); |
michael@0 | 49 | |
michael@0 | 50 | // nsIAccessible |
michael@0 | 51 | NS_IMETHODIMP GetNativeInterface(void** aOutAccessible); |
michael@0 | 52 | }; |
michael@0 | 53 | |
michael@0 | 54 | } // namespace a11y |
michael@0 | 55 | } // namespace mozilla |
michael@0 | 56 | |
michael@0 | 57 | #endif |