Skip to content

Commit

Permalink
grid: Rename alternate_protocols_cache.{h,cc} to alternate_protocols_…
Browse files Browse the repository at this point in the history
…cache_impl.{h,cc}

Signed-off-by: Ryan Hamilton <[email protected]>
  • Loading branch information
RyanTheOptimist committed May 10, 2021
1 parent 9375301 commit d7ee30d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions source/common/http/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ envoy_cc_library(

envoy_cc_library(
name = "alternate_protocols_cache",
srcs = ["alternate_protocols_cache.cc"],
hdrs = ["alternate_protocols_cache.h"],
srcs = ["alternate_protocols_cache_impl.cc"],
hdrs = ["alternate_protocols_cache_impl.h"],
deps = [
"//include/envoy/common:time_interface",
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "common/http/alternate_protocols_cache.h"
#include "common/http/alternate_protocols_cache_impl.h"

namespace Envoy {
namespace Http {
Expand Down
2 changes: 1 addition & 1 deletion source/common/http/conn_pool_grid.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "common/http/alternate_protocols_cache.h"
#include "common/http/alternate_protocols_cache_impl.h"
#include "common/http/conn_pool_base.h"
#include "common/http/http3_status_tracker.h"

Expand Down
4 changes: 2 additions & 2 deletions test/common/http/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ envoy_cc_test(
)

envoy_cc_test(
name = "alternate_protocols_cache_test",
srcs = ["alternate_protocols_cache_test.cc"],
name = "alternate_protocols_cache_impl_test",
srcs = ["alternate_protocols_cache_impl_test.cc"],
deps = [
":common_lib",
"//source/common/http:alternate_protocols_cache",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "common/http/alternate_protocols_cache.h"
#include "common/http/alternate_protocols_cache_impl.h"

#include "test/test_common/simulated_time_system.h"

Expand Down
2 changes: 1 addition & 1 deletion test/common/http/conn_pool_grid_test.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "common/http/alternate_protocols_cache.h"
#include "common/http/alternate_protocols_cache_impl.h"
#include "common/http/conn_pool_grid.h"

#include "test/common/http/common.h"
Expand Down

0 comments on commit d7ee30d

Please sign in to comment.