Home | History | Annotate | Download | only in cpp

Lines Matching refs:instance

12 /// This file defines an instance handle used to identify an instance in a
16 class Instance;
18 /// An instance handle identifies an instance in a constructor for a resource.
21 /// 1. A pp::Instance object's lifetime is managed by the system on the main
24 /// safe to refer to a <code>pp::Instance</code> object on a background thread.
26 /// so that they may safely be used on background threads. If the instance
37 /// implicit conversion from <code>pp::Instance*</code> for prettier code on
39 /// instance objects).
42 /// instead of a <code>pp::Instance</code>, and use them in resource
46 /// Implicit constructor for converting a <code>pp::Instance</code> to an
47 /// instance handle.
49 /// @param[in] instance The instance with which this
51 InstanceHandle(Instance* instance);
54 /// instance handle. This should not be implicit because it can make some
59 /// @param[in] pp_instance The instance with which this
66 /// @return A <code>PP_Instance</code> internal instance handle.