| Index: components/arc/common/bitmap.mojom
|
| diff --git a/components/mus/public/interfaces/window_server_test.mojom b/components/arc/common/bitmap.mojom
|
| similarity index 58%
|
| copy from components/mus/public/interfaces/window_server_test.mojom
|
| copy to components/arc/common/bitmap.mojom
|
| index 6e03ab23780153e531b9e1dfe98cfa830d249854..02d96647b6cf7833d42a0a8d7e84f92cfa1e9da4 100644
|
| --- a/components/mus/public/interfaces/window_server_test.mojom
|
| +++ b/components/arc/common/bitmap.mojom
|
| @@ -2,8 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -module mus.mojom;
|
| +module arc.mojom;
|
|
|
| -interface WindowServerTest {
|
| - EnsureClientHasDrawnWindow(string client_name) => (bool success);
|
| +struct ArcBitmap {
|
| + uint32 width;
|
| + uint32 height;
|
| + array<uint8> pixel_data; // Must be ARGB_8888
|
| };
|
|
|