diff --git a/impeller/entity/contents/test/contents_test_helpers.cc b/impeller/entity/contents/test/contents_test_helpers.cc index 4ec4301d19346..fe06724eaa870 100644 --- a/impeller/entity/contents/test/contents_test_helpers.cc +++ b/impeller/entity/contents/test/contents_test_helpers.cc @@ -4,8 +4,8 @@ #include "impeller/entity/contents/test/contents_test_helpers.h" -namespace impeller { +namespace impeller::testing { // -} \ No newline at end of file +} // namespace impeller::testing diff --git a/impeller/entity/contents/test/contents_test_helpers.h b/impeller/entity/contents/test/contents_test_helpers.h index e5f33b19bdeef..3783e86568c23 100644 --- a/impeller/entity/contents/test/contents_test_helpers.h +++ b/impeller/entity/contents/test/contents_test_helpers.h @@ -7,7 +7,7 @@ #include "impeller/renderer/command.h" -namespace impeller { +namespace impeller::testing { /// @brief Retrieve the [VertInfo] struct data from the provided [command]. template @@ -44,6 +44,6 @@ typename T::FragInfo* GetFragInfo(const Command& command) { return reinterpret_cast(data); } -} // namespace impeller +} // namespace impeller::testing #endif // FLUTTER_IMPELLER_ENTITY_CONTENTS_TEST_CONTENTS_TEST_HELPERS_H_ diff --git a/impeller/entity/contents/test/recording_render_pass.cc b/impeller/entity/contents/test/recording_render_pass.cc index da36a5fa1ae27..1eedfdb48d7e2 100644 --- a/impeller/entity/contents/test/recording_render_pass.cc +++ b/impeller/entity/contents/test/recording_render_pass.cc @@ -6,7 +6,7 @@ #include -namespace impeller { +namespace impeller::testing { RecordingRenderPass::RecordingRenderPass( std::shared_ptr delegate, @@ -147,4 +147,4 @@ bool RecordingRenderPass::BindResource( return true; } -} // namespace impeller +} // namespace impeller::testing diff --git a/impeller/entity/contents/test/recording_render_pass.h b/impeller/entity/contents/test/recording_render_pass.h index ffbef6fd7d521..13ee9090a34b3 100644 --- a/impeller/entity/contents/test/recording_render_pass.h +++ b/impeller/entity/contents/test/recording_render_pass.h @@ -7,7 +7,7 @@ #include "impeller/renderer/render_pass.h" -namespace impeller { +namespace impeller::testing { class RecordingRenderPass : public RenderPass { public: @@ -82,6 +82,6 @@ class RecordingRenderPass : public RenderPass { std::vector commands_; }; -} // namespace impeller +} // namespace impeller::testing #endif // FLUTTER_IMPELLER_ENTITY_CONTENTS_TEST_RECORDING_RENDER_PASS_H_