1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 
6 #ifndef widget_gtk_InProcessGtkCompositorWidget_h
7 #define widget_gtk_InProcessGtkCompositorWidget_h
8 
9 #include "GtkCompositorWidget.h"
10 
11 class nsWindow;
12 
13 namespace mozilla {
14 namespace widget {
15 
16 class InProcessGtkCompositorWidget final : public GtkCompositorWidget {
17  public:
18   InProcessGtkCompositorWidget(const GtkCompositorWidgetInitData& aInitData,
19                                const layers::CompositorOptions& aOptions,
20                                nsWindow* aWindow);
21 
22   // CompositorWidgetDelegate
23 
24   void ObserveVsync(VsyncObserver* aObserver) override;
25 };
26 
27 }  // namespace widget
28 }  // namespace mozilla
29 
30 #endif  // widget_gtk_InProcessGtkCompositorWidget_h
31