| Index: mojo/services/public/interfaces/native_viewport/native_viewport.mojom
|
| diff --git a/mojo/services/public/interfaces/native_viewport/native_viewport.mojom b/mojo/services/public/interfaces/native_viewport/native_viewport.mojom
|
| index c1a9742a063c8ec44f31558c04b41cc2906e5eee..f630031c7b3ab8f2140acdc32410e9e17c481c67 100644
|
| --- a/mojo/services/public/interfaces/native_viewport/native_viewport.mojom
|
| +++ b/mojo/services/public/interfaces/native_viewport/native_viewport.mojom
|
| @@ -10,18 +10,18 @@ module mojo {
|
|
|
| [Client=NativeViewportClient]
|
| interface NativeViewport {
|
| - Create(Rect bounds);
|
| + Create(Rect? bounds);
|
| Show();
|
| Hide();
|
| Close();
|
| - SetBounds(Rect bounds);
|
| + SetBounds(Rect? bounds);
|
| };
|
|
|
| interface NativeViewportClient {
|
| OnCreated(uint64 native_viewport_id);
|
| - OnBoundsChanged(Rect bounds);
|
| + OnBoundsChanged(Rect? bounds);
|
| OnDestroyed();
|
| - OnEvent(Event event) => ();
|
| + OnEvent(Event? event) => ();
|
| };
|
|
|
| }
|
|
|