Thu, 15 Jan 2015 15:59:08 +0100
Implement a real Private Browsing Mode condition by changing the API/ABI;
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:expandtab:shiftwidth=2:tabstop=2: |
michael@0 | 3 | */ |
michael@0 | 4 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 5 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 6 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 7 | |
michael@0 | 8 | #ifndef __MAI_REDUNDANT_OBJECT_FACTORY_H__ |
michael@0 | 9 | #define __MAI_REDUNDANT_OBJECT_FACTORY_H__ |
michael@0 | 10 | |
michael@0 | 11 | G_BEGIN_DECLS |
michael@0 | 12 | |
michael@0 | 13 | typedef struct _maiRedundantObjectFactory maiRedundantObjectFactory; |
michael@0 | 14 | typedef struct _maiRedundantObjectFactoryClass maiRedundantObjectFactoryClass; |
michael@0 | 15 | |
michael@0 | 16 | struct _maiRedundantObjectFactory |
michael@0 | 17 | { |
michael@0 | 18 | AtkObjectFactory parent; |
michael@0 | 19 | }; |
michael@0 | 20 | |
michael@0 | 21 | struct _maiRedundantObjectFactoryClass |
michael@0 | 22 | { |
michael@0 | 23 | AtkObjectFactoryClass parent_class; |
michael@0 | 24 | }; |
michael@0 | 25 | |
michael@0 | 26 | GType mai_redundant_object_factory_get_type(); |
michael@0 | 27 | |
michael@0 | 28 | AtkObjectFactory *mai_redundant_object_factory_new(); |
michael@0 | 29 | |
michael@0 | 30 | G_END_DECLS |
michael@0 | 31 | |
michael@0 | 32 | #endif /* __NS_MAI_REDUNDANT_OBJECT_FACTORY_H__ */ |