1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/accessible/src/atk/DocAccessibleWrap.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* vim: set ts=2 et sw=2 tw=80: */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +/* For documentation of the accessibility architecture, 1.11 + * see http://lxr.mozilla.org/seamonkey/source/accessible/accessible-docs.html 1.12 + */ 1.13 + 1.14 +#ifndef mozilla_a11y_DocAccessibleWrap_h__ 1.15 +#define mozilla_a11y_DocAccessibleWrap_h__ 1.16 + 1.17 +#include "DocAccessible.h" 1.18 + 1.19 +namespace mozilla { 1.20 +namespace a11y { 1.21 + 1.22 +class DocAccessibleWrap : public DocAccessible 1.23 +{ 1.24 +public: 1.25 + DocAccessibleWrap(nsIDocument* aDocument, nsIContent* aRootContent, 1.26 + nsIPresShell* aPresShell); 1.27 + virtual ~DocAccessibleWrap(); 1.28 + 1.29 + bool mActivated; 1.30 +}; 1.31 + 1.32 +} // namespace a11y 1.33 +} // namespace mozilla 1.34 + 1.35 +#endif