summaryrefslogtreecommitdiffstats
path: root/servo/components/style/gecko_bindings/sugar/ns_com_ptr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'servo/components/style/gecko_bindings/sugar/ns_com_ptr.rs')
-rw-r--r--servo/components/style/gecko_bindings/sugar/ns_com_ptr.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/servo/components/style/gecko_bindings/sugar/ns_com_ptr.rs b/servo/components/style/gecko_bindings/sugar/ns_com_ptr.rs
new file mode 100644
index 0000000000..1c54541bd8
--- /dev/null
+++ b/servo/components/style/gecko_bindings/sugar/ns_com_ptr.rs
@@ -0,0 +1,15 @@
+/* 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 https://mozilla.org/MPL/2.0/. */
+
+//! Little helpers for `nsCOMPtr`.
+
+use crate::gecko_bindings::structs::nsCOMPtr;
+
+impl<T> nsCOMPtr<T> {
+ /// Get this pointer as a raw pointer.
+ #[inline]
+ pub fn raw(&self) -> *mut T {
+ self.mRawPtr
+ }
+}