blob: d26eaedf401ece02d176cf05561aca01354e69d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2010 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_BASE_LOAD_FLAGS_H_
#define NET_BASE_LOAD_FLAGS_H_
namespace net {
// These flags provide metadata about the type of the load request. They are
// intended to be OR'd together.
enum {
#define LOAD_FLAG(label, value) LOAD_ ## label = value,
#include "net/base/load_flags_list.h"
#undef LOAD_FLAG
};
} // namespace net
#endif // NET_BASE_LOAD_FLAGS_H_
|