forked from mirrors/gecko-dev
		
	 2f6cd63d92
			
		
	
	
		2f6cd63d92
		
	
	
	
	
		
			
			Moves most of the RTL handling from XULDocument into Document. Creates a new static class that listens to the direction pref change and notifies all the documents when it changes. Differential Revision: https://phabricator.services.mozilla.com/D25887 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			599 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			599 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 | |
| /* vim: set ts=8 sts=2 et sw=2 tw=80: */
 | |
| /* This Source Code Form is subject to the terms of the Mozilla Public
 | |
|  * License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
|  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 | |
| 
 | |
| #ifndef mozilla_dom_UIDirectionManager_h
 | |
| #define mozilla_dom_UIDirectionManager_h
 | |
| 
 | |
| namespace mozilla {
 | |
| namespace dom {
 | |
| 
 | |
| class UIDirectionManager final {
 | |
|  public:
 | |
|   static void Initialize();
 | |
|   static void Shutdown();
 | |
| };
 | |
| 
 | |
| }  // namespace dom
 | |
| }  // namespace mozilla
 | |
| 
 | |
| #endif
 |