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

Side by Side Diff: blimp/engine/mojo/font_fetcher.mojom

Issue 2629743003: Remove all blimp engine code (Closed)
Patch Set: Use consistent comment style in //chrome Created 3 years, 11 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 | « blimp/engine/mojo/blob_channel_service.cc ('k') | blimp/engine/mojo/font_fetcher_mojo_impl.h » ('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 blimp.engine.mojom;
6
7 // Allows the renderer to synchronously request font data from the browser
8 // process.
9 interface FontFetcher {
10 // Create a stream for the font data.
11 // font_hash: a hash representation of the font data.
12 // If there is no font for font_hash, return an empty shared buffer.
13 [Sync]
14 GetFontStream(string font_hash) =>
15 (handle<shared_buffer> font_stream, uint32 size);
16 };
OLDNEW
« no previous file with comments | « blimp/engine/mojo/blob_channel_service.cc ('k') | blimp/engine/mojo/font_fetcher_mojo_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698