load_flags.h 540 B

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