NativeLayerRemoteChild.h (673B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ 4 5 #ifndef mozilla_layers_NativeLayerRemoteChild_h 6 #define mozilla_layers_NativeLayerRemoteChild_h 7 8 #include "mozilla/layers/PNativeLayerRemoteChild.h" 9 10 namespace mozilla { 11 namespace layers { 12 13 class NativeLayerRemoteChild : public PNativeLayerRemoteChild { 14 NS_INLINE_DECL_THREADSAFE_REFCOUNTING(NativeLayerRemoteChild); 15 16 protected: 17 ~NativeLayerRemoteChild() {} 18 }; 19 20 } // namespace layers 21 } // namespace mozilla 22 23 #endif // mozilla_layers_NativeLayerRemoteChild_h