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

Side by Side Diff: components/arc/common/print.mojom

Issue 2115863002: Stub for ARC print Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Stub for ARC print Bridge Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « components/arc/common/arc_bridge.mojom ('k') | components/arc/print/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
Luis Héctor Chávez 2016/07/01 16:02:07 // Next MinVersion: 1
Sergey Poromov 2016/07/11 14:42:07 Done.
4 4
5 module arc.mojom; 5 module arc.mojom;
6 6
7 // Represents a rectangle to specify screen coordinates. 7 interface PrintHost {
Luis Héctor Chávez 2016/07/01 16:02:07 // Next method ID: 1
Sergey Poromov 2016/07/11 14:42:07 Done.
8 struct ScreenRect { 8 Print(handle file);
Luis Héctor Chávez 2016/07/01 16:02:07 This and Init need explicit ordinals. Print@0 and
Sergey Poromov 2016/07/11 14:42:07 Done.
9 int32 left;
10 int32 top;
11 int32 right;
12 int32 bottom;
13 }; 9 };
10
11 interface PrintInstance {
Luis Héctor Chávez 2016/07/01 16:02:07 // Next method ID: 1
Sergey Poromov 2016/07/11 14:42:07 Done.
12 // Establishes full-duplex communication with the host.
13 Init(PrintHost host_ptr);
14 };
OLDNEW
« no previous file with comments | « components/arc/common/arc_bridge.mojom ('k') | components/arc/print/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698