| Index: services/ui/ws/platform_display_factory.h
|
| diff --git a/services/ui/ws/platform_display_factory.h b/services/ui/ws/platform_display_factory.h
|
| index 80bd1c107d65c51a09e60d33d5294d9ec42fd819..e0f1be93d70fbdf80f06f2c0c7b821f086771e56 100644
|
| --- a/services/ui/ws/platform_display_factory.h
|
| +++ b/services/ui/ws/platform_display_factory.h
|
| @@ -11,12 +11,14 @@ namespace ui {
|
| namespace ws {
|
|
|
| class PlatformDisplay;
|
| +struct PlatformDisplayInitParams;
|
|
|
| // Abstract factory for PlatformDisplays. Used by tests to construct test
|
| // PlatformDisplays.
|
| class PlatformDisplayFactory {
|
| public:
|
| - virtual std::unique_ptr<PlatformDisplay> CreatePlatformDisplay() = 0;
|
| + virtual std::unique_ptr<PlatformDisplay> CreatePlatformDisplay(
|
| + const PlatformDisplayInitParams& init_params) = 0;
|
| };
|
|
|
| } // namespace ws
|
|
|