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

Side by Side Diff: components/font_service/public/interfaces/font_service.mojom

Issue 1877673002: Move legacyCreateTypeface to SkFontStyle. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove DEPS change now that Skia change has landed. 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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.
4 4
5 module font_service; 5 module font_service;
6 6
7 enum TypefaceStyle { 7 enum TypefaceSlant {
8 NORMAL = 0, 8 ROMAN = 0,
9 BOLD = 0x01, 9 ITALIC = 1,
10 ITALIC = 0x02, 10 };
11 BOLD_ITALIC = 0x03 11
12 struct TypefaceStyle {
13 uint16 weight;
14 uint8 width;
15 TypefaceSlant slant;
12 }; 16 };
13 17
14 // A reference to specific font on the font service. 18 // A reference to specific font on the font service.
15 struct FontIdentity { 19 struct FontIdentity {
16 uint32 id; 20 uint32 id;
17 int32 ttc_index; 21 int32 ttc_index;
18 // TODO(erg): So the string is supposed to be a path. However, the current 22 // TODO(erg): So the string is supposed to be a path. However, the current
19 // chrome code goes out of its way to send this to the renderer process, and 23 // chrome code goes out of its way to send this to the renderer process, and
20 // it is passed to blink, even though the openStream() IPC in chrome uses the 24 // it is passed to blink, even though the openStream() IPC in chrome uses the
21 // id number instead. Do more investigation about what we need to do to plug 25 // id number instead. Do more investigation about what we need to do to plug
22 // this system path leak. 26 // this system path leak.
23 string str_representation; 27 string str_representation;
24 }; 28 };
25 29
26 // Loads and resolves fonts. 30 // Loads and resolves fonts.
27 // 31 //
28 // We still need to load fonts from within a sandboxed process. We set 32 // We still need to load fonts from within a sandboxed process. We set
29 // up a service to match fonts and load them, 33 // up a service to match fonts and load them,
30 interface FontService { 34 interface FontService {
31 // Returns the best match for |family_name| and |style|. On error, returns a 35 // Returns the best match for |family_name| and |style|. On error, returns a
32 // null |identity|. 36 // null |identity|.
33 MatchFamilyName(string family_name, TypefaceStyle style) => 37 MatchFamilyName(string family_name, TypefaceStyle style) =>
34 (FontIdentity? identity, string family_name, TypefaceStyle style); 38 (FontIdentity? identity, string family_name, TypefaceStyle style);
35 39
36 // Returns a handle to the raw font specified by |id_number|. 40 // Returns a handle to the raw font specified by |id_number|.
37 OpenStream(uint32 id_number) => (handle font_handle); 41 OpenStream(uint32 id_number) => (handle font_handle);
38 }; 42 };
OLDNEW
« no previous file with comments | « components/font_service/public/cpp/font_service_thread.cc ('k') | content/browser/renderer_host/sandbox_ipc_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698