tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Platform.cpp (1231B)


      1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      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
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 #include "Platform.h"
      8 
      9 using namespace mozilla;
     10 using namespace mozilla::a11y;
     11 
     12 void a11y::PlatformInit() {}
     13 
     14 void a11y::PlatformShutdown() {}
     15 
     16 void a11y::ProxyCreated(RemoteAccessible*) {}
     17 
     18 void a11y::ProxyDestroyed(RemoteAccessible*) {}
     19 
     20 void a11y::PlatformEvent(Accessible*, uint32_t) {}
     21 
     22 void a11y::PlatformStateChangeEvent(Accessible*, uint64_t, bool) {}
     23 
     24 void a11y::PlatformFocusEvent(Accessible* aTarget) {}
     25 
     26 void a11y::PlatformCaretMoveEvent(Accessible* aTarget, int32_t aOffset,
     27                                  bool aIsSelectionCollapsed,
     28                                  int32_t aGranularity, bool aFromUser) {}
     29 
     30 void a11y::PlatformTextChangeEvent(Accessible*, const nsAString&, int32_t,
     31                                   uint32_t, bool, bool) {}
     32 
     33 void a11y::PlatformShowHideEvent(Accessible*, Accessible*, bool, bool) {}
     34 
     35 void a11y::PlatformSelectionEvent(Accessible*, Accessible*, uint32_t) {}