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

Side by Side Diff: services/ui/gpu/interfaces/gpu_service_host.mojom

Issue 2559113002: mus/gpu: Introduce the GpuServiceHost mojom interface. (Closed)
Patch Set: . Created 4 years 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 | « services/ui/gpu/interfaces/gpu_main.mojom ('k') | services/ui/gpu/interfaces/typemaps.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 module ui.mojom;
6
7 import "gpu/ipc/common/gpu_info.mojom";
8 import "services/ui/gpu/interfaces/context_lost_reason.mojom";
9 import "url/mojo/url.mojom";
10
11 interface GpuServiceHost {
12 DidInitialize(gpu.mojom.GpuInfo gpu_info);
13 DidCreateOffscreenContext(url.mojom.Url url);
14 DidDestroyOffscreenContext(url.mojom.Url url);
15
16 DidDestroyChannel(int32 client_id);
17 DidLoseContext(bool offscreen,
18 ContextLostReason reason,
19 url.mojom.Url active_url);
20
21 StoreShaderToDisk(int32 client_id, string key, string shader);
22 };
OLDNEW
« no previous file with comments | « services/ui/gpu/interfaces/gpu_main.mojom ('k') | services/ui/gpu/interfaces/typemaps.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698