Import chromium-123.0.6312.40

This commit is contained in:
importer
2024-03-21 18:13:28 +08:00
committed by klzgrad
commit f0de60c19c
24941 changed files with 4484504 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.net;
import androidx.annotation.IntDef;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@IntDef({
#define NET_ERROR(name, value) NetError.ERR_##name,
#include "net/base/net_error_list.h"
#undef NET_ERROR
NetError.OK
})
@Retention(RetentionPolicy.SOURCE)
public @interface NetError {
int OK = 0;
#define NET_ERROR(name, value) int ERR_##name = value;
#include "net/base/net_error_list.h"
#undef NET_ERROR
}