aboutsummaryrefslogtreecommitdiff
path: root/src/javascript/jsc/bindings/Sink.h
blob: 3d7435b296ed798c8b7d951a54facf12de75a3e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "root.h"

namespace WebCore {

enum SinkID : uint8_t {
    ArrayBufferSink = 0,
    TextSink = 1,
    FileSink = 2,
    HTMLRewriterSink = 3,

};
static constexpr unsigned numberOfSinkIDs
    = 4;

}