From 0daf9e6c85a4e5174ce5a8be92fd375334658480 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Thu, 11 Aug 2022 14:04:31 -0700 Subject: [PATCH] Add doc comments to WindowsTestContext (flutter/engine#35350) Adds missing doc comments to WindowsTestContext. Issue: https://github.com/flutter/flutter/issues/87299 --- .../shell/platform/windows/testing/windows_test_context.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/src/flutter/shell/platform/windows/testing/windows_test_context.h b/engine/src/flutter/shell/platform/windows/testing/windows_test_context.h index bdc6fcc22a2..30673f1ca5d 100644 --- a/engine/src/flutter/shell/platform/windows/testing/windows_test_context.h +++ b/engine/src/flutter/shell/platform/windows/testing/windows_test_context.h @@ -23,8 +23,10 @@ class WindowsTestContext { explicit WindowsTestContext(std::string_view assets_path = ""); virtual ~WindowsTestContext(); + // Returns the path to assets required by the Flutter runtime. const std::wstring& GetAssetsPath() const; + // Returns the path to the ICU library data file. const std::wstring& GetIcuDataPath() const; private: