chrome_resource_request_blocked_reason.h 670 B

1234567891011121314151617
  1. // Copyright 2021 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 CHROME_COMMON_CHROME_RESOURCE_REQUEST_BLOCKED_REASON_H_
  5. #define CHROME_COMMON_CHROME_RESOURCE_REQUEST_BLOCKED_REASON_H_
  6. #include "content/public/common/resource_request_blocked_reason.h"
  7. // Extends content::ResourceRequestBlockedReason with Chrome specific reasons.
  8. enum class ChromeResourceRequestBlockedReason {
  9. kExtension =
  10. static_cast<int>(content::ResourceRequestBlockedReason::kMax) + 1,
  11. kMax = kExtension,
  12. };
  13. #endif // CHROME_COMMON_CHROME_RESOURCE_REQUEST_BLOCKED_REASON_H_