Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(263)

Unified Diff: components/arc/common/bitmap.mojom

Issue 1883473002: arc: Support more types of notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/arc/common/bitmap.mojom
diff --git a/mash/login/public/interfaces/login.mojom b/components/arc/common/bitmap.mojom
similarity index 58%
copy from mash/login/public/interfaces/login.mojom
copy to components/arc/common/bitmap.mojom
index 5a14cfa7a56b3d98b2e319a2a7ff3147de825c49..02d96647b6cf7833d42a0a8d7e84f92cfa1e9da4 100644
--- a/mash/login/public/interfaces/login.mojom
+++ b/components/arc/common/bitmap.mojom
@@ -2,9 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-module mash.login.mojom;
+module arc.mojom;
-interface Login {
- ShowLoginUI();
- SwitchUser();
+struct ArcBitmap {
+ uint32 width;
+ uint32 height;
+ array<uint8> pixel_data; // Must be ARGB_8888
};

Powered by Google App Engine
This is Rietveld 408576698