summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/http2/platform
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/third_party/quiche/src/http2/platform')
-rw-r--r--chromium/net/third_party/quiche/src/http2/platform/api/http2_bug_tracker.h21
-rw-r--r--chromium/net/third_party/quiche/src/http2/platform/api/http2_flag_utils.h19
-rw-r--r--chromium/net/third_party/quiche/src/http2/platform/api/http2_flags.h19
-rw-r--r--chromium/net/third_party/quiche/src/http2/platform/api/http2_logging.h21
-rw-r--r--chromium/net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h16
5 files changed, 0 insertions, 96 deletions
diff --git a/chromium/net/third_party/quiche/src/http2/platform/api/http2_bug_tracker.h b/chromium/net/third_party/quiche/src/http2/platform/api/http2_bug_tracker.h
deleted file mode 100644
index 6f2fe51418e..00000000000
--- a/chromium/net/third_party/quiche/src/http2/platform/api/http2_bug_tracker.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef QUICHE_HTTP2_PLATFORM_API_HTTP2_BUG_TRACKER_H_
-#define QUICHE_HTTP2_PLATFORM_API_HTTP2_BUG_TRACKER_H_
-
-#include "common/platform/api/quiche_bug_tracker.h"
-
-#define HTTP2_BUG QUICHE_BUG
-#define HTTP2_BUG_IF QUICHE_BUG_IF
-
-// V2 macros are the same as all the HTTP2_BUG flavor above, but they take a
-// bug_id parameter.
-#define HTTP2_BUG_V2 QUICHE_BUG
-#define HTTP2_BUG_IF_V2 QUICHE_BUG_IF
-
-#define FLAGS_http2_always_log_bugs_for_tests \
- FLAGS_http2_always_log_bugs_for_tests_IMPL
-
-#endif // QUICHE_HTTP2_PLATFORM_API_HTTP2_BUG_TRACKER_H_
diff --git a/chromium/net/third_party/quiche/src/http2/platform/api/http2_flag_utils.h b/chromium/net/third_party/quiche/src/http2/platform/api/http2_flag_utils.h
deleted file mode 100644
index 79609e621e2..00000000000
--- a/chromium/net/third_party/quiche/src/http2/platform/api/http2_flag_utils.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2018 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef QUICHE_HTTP2_PLATFORM_API_HTTP2_FLAG_UTILS_H_
-#define QUICHE_HTTP2_PLATFORM_API_HTTP2_FLAG_UTILS_H_
-
-#include "common/platform/api/quiche_flag_utils.h"
-
-#define HTTP2_RELOADABLE_FLAG_COUNT QUICHE_RELOADABLE_FLAG_COUNT
-#define HTTP2_RELOADABLE_FLAG_COUNT_N QUICHE_RELOADABLE_FLAG_COUNT_N
-
-#define HTTP2_RESTART_FLAG_COUNT QUICHE_RESTART_FLAG_COUNT
-#define HTTP2_RESTART_FLAG_COUNT_N QUICHE_RESTART_FLAG_COUNT_N
-
-#define HTTP2_CODE_COUNT QUICHE_CODE_COUNT
-#define HTTP2_CODE_COUNT_N QUICHE_CODE_COUNT_N
-
-#endif // QUICHE_HTTP2_PLATFORM_API_HTTP2_FLAG_UTILS_H_
diff --git a/chromium/net/third_party/quiche/src/http2/platform/api/http2_flags.h b/chromium/net/third_party/quiche/src/http2/platform/api/http2_flags.h
deleted file mode 100644
index 7c87864e357..00000000000
--- a/chromium/net/third_party/quiche/src/http2/platform/api/http2_flags.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2018 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef QUICHE_HTTP2_PLATFORM_API_HTTP2_FLAGS_H_
-#define QUICHE_HTTP2_PLATFORM_API_HTTP2_FLAGS_H_
-
-#include "common/platform/api/quiche_flags.h"
-
-#define GetHttp2ReloadableFlag(flag) GetQuicheReloadableFlag(http2, flag)
-#define SetHttp2ReloadableFlag(flag, value) \
- SetQuicheReloadableFlag(http2, flag, value)
-#define GetHttp2RestartFlag(flag) GetQuicheRestartFlag(http2, flag)
-#define SetHttp2RestartFlag(flag, value) \
- SetQuicheRestartFlag(http2, flag, value)
-#define GetHttp2Flag(flag) GetQuicheFlag(flag)
-#define SetHttp2Flag(flag, value) SetQuicheFlag(flag, value)
-
-#endif // QUICHE_HTTP2_PLATFORM_API_HTTP2_FLAGS_H_
diff --git a/chromium/net/third_party/quiche/src/http2/platform/api/http2_logging.h b/chromium/net/third_party/quiche/src/http2/platform/api/http2_logging.h
deleted file mode 100644
index 80ced05f188..00000000000
--- a/chromium/net/third_party/quiche/src/http2/platform/api/http2_logging.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef QUICHE_HTTP2_PLATFORM_API_HTTP2_LOGGING_H_
-#define QUICHE_HTTP2_PLATFORM_API_HTTP2_LOGGING_H_
-
-#include "common/platform/api/quiche_logging.h"
-
-#define HTTP2_LOG(severity) QUICHE_LOG(severity)
-
-#define HTTP2_VLOG(verbose_level) QUICHE_VLOG(verbose_level)
-
-#define HTTP2_DLOG(severity) QUICHE_DLOG(severity)
-
-#define HTTP2_DLOG_IF(severity, condition) QUICHE_DLOG_IF(severity, condition)
-
-#define HTTP2_DVLOG(verbose_level) QUICHE_DVLOG(verbose_level)
-
-#define HTTP2_DVLOG_IF(verbose_level, condition) \
- QUICHE_DVLOG_IF(verbose_level, condition)
-
-#define HTTP2_LOG_FIRST_N(severity, n) QUICHE_LOG_FIRST_N(severity, n)
-
-#endif // QUICHE_HTTP2_PLATFORM_API_HTTP2_LOGGING_H_
diff --git a/chromium/net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h b/chromium/net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h
deleted file mode 100644
index ccd3e724bd2..00000000000
--- a/chromium/net/third_party/quiche/src/http2/platform/api/http2_test_helpers.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef QUICHE_HTTP2_PLATFORM_API_HTTP2_TEST_HELPERS_H_
-#define QUICHE_HTTP2_PLATFORM_API_HTTP2_TEST_HELPERS_H_
-
-// Provides VERIFY_* macros, similar to EXPECT_* and ASSERT_*, but they return
-// an AssertionResult if the condition is not satisfied.
-#include "net/http2/platform/impl/http2_test_helpers_impl.h"
-
-#include "common/platform/api/quiche_test.h"
-
-#define VERIFY_AND_RETURN_SUCCESS(expression) \
- { \
- VERIFY_SUCCESS(expression); \
- return ::testing::AssertionSuccess(); \
- }
-
-#endif // QUICHE_HTTP2_PLATFORM_API_HTTP2_TEST_HELPERS_H_