Ejemplo n.º 1
0
 public static Location Create(nsIDOMLocation location)
 {
     return(new Location(location));
 }
Ejemplo n.º 2
0
 private Location(nsIDOMLocation location)
 {
     _location = new InstanceWrapper <nsIDOMLocation>(location);
 }
Ejemplo n.º 3
0
 private Location(nsIDOMLocation location)
 {
     _location = new ComPtr <nsIDOMLocation>(location);
 }
Ejemplo n.º 4
0
		private Location( nsIDOMLocation location )
		{
			_location = new ComPtr<nsIDOMLocation>(  location );
		}
Ejemplo n.º 5
0
		public static Location Create(nsIDOMLocation location)
		{
			return new Location( location );
		}
Ejemplo n.º 6
0
		private DomLocation(nsIDOMLocation domLocation)
		{
			Debug.Assert(domLocation != null);
			m_DomLocation = domLocation;
		}
Ejemplo n.º 7
0
		internal static DomLocation Create(nsIDOMLocation domLocation)
		{
			return domLocation != null ? new DomLocation(domLocation) : null;
		}