blob: 9fa3fff3b3fab9b268a7f898d30051ad54efb49a (
plain)
1
2
3
4
5
6
7
8
9
|
#include "bindings/npapi.h"
// These are defined in WebCore/brdige/npapi.h and we need them on Linux/Win.
#ifndef FALSE
#define FALSE (0)
#endif
#ifndef TRUE
#define TRUE (1)
#endif
|