1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
3 * ff3-http.cpp: Firefox 3.x bridge
6 * Moonlight List (moonlight-list@lists.ximian.com)
8 * Copyright 2007 Novell, Inc. (http://www.novell.com)
10 * See the LICENSE file included with the distribution for details.
14 // define this here so that protypes.h isn't included (and doesn't
15 // muck with our npapi.h)
16 #define NO_NSPR_10_SUPPORT
20 #include "ff3-bridge.h"
22 #define CONCAT(x,y) x##y
23 #define GECKO_SYM(x) CONCAT(FF3,x)
24 #include "../browser-http.inc"
27 FF3BrowserBridge::CreateDownloaderRequest (const char *method
, const char *uri
, bool disable_cache
)
29 return new FF3DownloaderRequest (method
, uri
, disable_cache
);