2009-12-07 Rolf Bjarne Kvinge <RKvinge@novell.com>
[moon.git] / plugin / firefox / ff3 / ff3-http.cpp
blobcc1107540b6ae18c0f86252e2e1732ab3d73f033
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * ff3-http.cpp: Firefox 3.x bridge
5 * Contact:
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
18 #include "plugin.h"
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"
26 DownloaderRequest*
27 FF3BrowserBridge::CreateDownloaderRequest (const char *method, const char *uri, bool disable_cache)
29 return new FF3DownloaderRequest (method, uri, disable_cache);