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

Issue 1615133002: Implement API for accessing fonts installed locally on the system. (Closed)

Created:
4 years, 11 months ago by Daniel Nishi
Modified:
4 years, 8 months ago
CC:
Aaron Boodman, abarth-chromium, darktears, apavlov+blink_chromium.org, ben+mojo_chromium.org, blink-reviews, blink-reviews-api_chromium.org, blink-reviews-css, chromium-reviews, creis+watch_chromium.org, darin (slow to review), darin-cc_chromium.org, dglazkov+blink, kinuko+watch, mkwst+moarreviews-renderer_chromium.org, mlamouri+watch-content_chromium.org, nasko+codewatch_chromium.org, qsr+mojo_chromium.org, rwlbuis, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org, kojii, drott, behdad, jungshik at Google
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Implement API for accessing fonts installed locally on the system. * Allows for the querying of a list of installed fonts on the system and returning it using existing CSS Font Face types. * Allows developers to load the binary data from local font faces for usage with JS font rendering libraries, such as OpenType.js or using Emscripten compiled Harfbuzz. The API is guarded under the Experimental Framework, which is currently not enabled. For more information about this, see https://docs.google.com/document/d/1qVP2CK1lbfmtIJRIm6nwuEFFhGhYbtThLQPo3CSTtmg/edit. This API will be inaccessible until the Experimental Framework launches. A future patch that relies on these changes will add OS specific implementations for OS X, Windows, and Linux. Intent to Implement: https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/G-hC66MRTso BUG=535764

Patch Set 1 : #

Total comments: 24

Patch Set 2 : Addressing Mounir's comments. #

Total comments: 19

Patch Set 3 : #

Total comments: 2

Patch Set 4 : OWNERS Mojo. #

Total comments: 2

Patch Set 5 : Add file reading failure checking. #

Total comments: 52

Patch Set 6 : #

Total comments: 46

Patch Set 7 : Addressing Nasko. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1063 lines, -20 lines) Patch
A content/browser/font_access/font_access_service_impl.h View 1 2 3 4 5 6 1 chunk +91 lines, -0 lines 0 comments Download
A content/browser/font_access/font_access_service_impl.cc View 1 2 3 4 5 6 1 chunk +184 lines, -0 lines 0 comments Download
A content/browser/font_access/font_access_service_unittest.cc View 1 2 3 4 5 6 1 chunk +294 lines, -0 lines 0 comments Download
A content/browser/font_access/font_getter.h View 1 2 3 4 5 6 1 chunk +37 lines, -0 lines 0 comments Download
A + content/browser/font_access/font_getter.cc View 1 2 3 4 5 6 1 chunk +4 lines, -4 lines 0 comments Download
A content/browser/font_access/font_getter_default.cc View 1 2 3 4 5 6 1 chunk +14 lines, -0 lines 0 comments Download
M content/browser/renderer_host/render_process_host_impl.cc View 1 2 3 4 5 2 chunks +4 lines, -0 lines 0 comments Download
A + content/common/font_access/OWNERS View 1 2 3 1 chunk +1 line, -3 lines 0 comments Download
A content/common/font_access/font_access_service.mojom View 1 2 3 4 5 1 chunk +13 lines, -0 lines 0 comments Download
A + content/common/font_access/font_description.mojom View 1 2 3 4 5 6 1 chunk +6 lines, -3 lines 0 comments Download
M content/content_browser.gypi View 1 2 3 4 5 6 1 chunk +5 lines, -0 lines 0 comments Download
M content/content_common_mojo_bindings.gyp View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M content/content_renderer.gypi View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M content/content_tests.gypi View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
A content/renderer/font_access/web_font_access_impl.h View 1 2 3 4 5 6 1 chunk +43 lines, -0 lines 0 comments Download
A content/renderer/font_access/web_font_access_impl.cc View 1 2 3 4 5 6 1 chunk +86 lines, -0 lines 0 comments Download
M content/renderer/renderer_blink_platform_impl.h View 1 2 3 4 5 3 chunks +4 lines, -0 lines 0 comments Download
M content/renderer/renderer_blink_platform_impl.cc View 1 2 3 4 5 3 chunks +6 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/core.gypi View 1 2 3 4 5 2 chunks +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/FontFace.h View 1 2 chunks +5 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/css/FontFace.cpp View 1 2 3 4 5 1 chunk +7 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/FontFace.idl View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/FontFaceSet.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/FontFaceSet.cpp View 1 2 3 4 5 3 chunks +54 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/FontFaceSet.idl View 1 2 2 chunks +3 lines, -1 line 0 comments Download
A third_party/WebKit/Source/core/css/LocalFontFace.h View 1 2 3 4 5 1 chunk +43 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/css/LocalFontFace.cpp View 1 2 3 4 5 1 chunk +73 lines, -0 lines 0 comments Download
A + third_party/WebKit/Source/core/css/LocalFontFace.idl View 2 chunks +8 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/public/platform/Platform.h View 1 2 3 4 5 2 chunks +5 lines, -0 lines 0 comments Download
A third_party/WebKit/public/platform/modules/font_access/OWNERS View 1 chunk +1 line, -0 lines 0 comments Download
A third_party/WebKit/public/platform/modules/font_access/WebFontAccess.h View 1 2 3 4 5 1 chunk +31 lines, -0 lines 0 comments Download
A third_party/WebKit/public/platform/modules/font_access/WebFontAccessDescription.h View 1 chunk +30 lines, -0 lines 0 comments Download

Messages

Total messages: 32 (8 generated)
Daniel Nishi
nick@chromium.org: Please review changes in content/ mlamouri@chromium.org: Please review changes in third_party/WebKit/Source/modules/ esprehn@chromium.org: Please review ...
4 years, 11 months ago (2016-01-21 20:43:12 UTC) #4
mlamouri (slow - plz ping)
I had a quick look and left some comments but I think your CL is ...
4 years, 11 months ago (2016-01-26 17:17:12 UTC) #5
Daniel Nishi
Thanks, Mounir! I can split this along the Blink/Chrome division, if that makes sense. https://codereview.chromium.org/1615133002/diff/20001/content/browser/font_access/font_access_service_impl.cc ...
4 years, 11 months ago (2016-01-26 18:36:10 UTC) #6
esprehn
I think you want much more of this code in blink's platform, and very little ...
4 years, 11 months ago (2016-01-26 20:08:18 UTC) #8
esprehn
I think you need some tests that load a hundred local fonts, right now this ...
4 years, 11 months ago (2016-01-26 20:26:45 UTC) #9
esprehn
Oh I see you're just storing names and paths, that still means I can touch ...
4 years, 11 months ago (2016-01-26 20:30:52 UTC) #10
Daniel Nishi
On 2016/01/26 20:30:52, esprehn wrote: > Oh I see you're just storing names and paths, ...
4 years, 11 months ago (2016-01-26 21:01:46 UTC) #11
Daniel Nishi
Thanks again, Elliot! https://codereview.chromium.org/1615133002/diff/40001/content/browser/font_access/font_access_service_impl.cc File content/browser/font_access/font_access_service_impl.cc (right): https://codereview.chromium.org/1615133002/diff/40001/content/browser/font_access/font_access_service_impl.cc#newcode85 content/browser/font_access/font_access_service_impl.cc:85: mojo::SharedBuffer buffer(1); On 2016/01/26 20:26:44, esprehn ...
4 years, 11 months ago (2016-01-26 23:49:27 UTC) #12
dcheng
Drive-by. https://codereview.chromium.org/1615133002/diff/60001/content/common/font_access/font_access_service.mojom File content/common/font_access/font_access_service.mojom (right): https://codereview.chromium.org/1615133002/diff/60001/content/common/font_access/font_access_service.mojom#newcode1 content/common/font_access/font_access_service.mojom:1: // Copyright 2016 The Chromium Authors. All rights ...
4 years, 11 months ago (2016-01-27 02:46:26 UTC) #13
Daniel Nishi
https://codereview.chromium.org/1615133002/diff/60001/content/common/font_access/font_access_service.mojom File content/common/font_access/font_access_service.mojom (right): https://codereview.chromium.org/1615133002/diff/60001/content/common/font_access/font_access_service.mojom#newcode1 content/common/font_access/font_access_service.mojom:1: // Copyright 2016 The Chromium Authors. All rights reserved. ...
4 years, 10 months ago (2016-01-28 23:33:00 UTC) #14
esprehn
Still looking this over... https://codereview.chromium.org/1615133002/diff/40001/content/browser/font_access/font_access_service_impl.cc File content/browser/font_access/font_access_service_impl.cc (right): https://codereview.chromium.org/1615133002/diff/40001/content/browser/font_access/font_access_service_impl.cc#newcode155 content/browser/font_access/font_access_service_impl.cc:155: mojo::MapBuffer(buffer.handle.get(), 0, size, &data, what ...
4 years, 10 months ago (2016-01-31 00:54:46 UTC) #15
Daniel Nishi
https://codereview.chromium.org/1615133002/diff/40001/content/browser/font_access/font_access_service_impl.cc File content/browser/font_access/font_access_service_impl.cc (right): https://codereview.chromium.org/1615133002/diff/40001/content/browser/font_access/font_access_service_impl.cc#newcode155 content/browser/font_access/font_access_service_impl.cc:155: mojo::MapBuffer(buffer.handle.get(), 0, size, &data, On 2016/01/31 00:54:46, esprehn wrote: ...
4 years, 10 months ago (2016-02-02 17:54:18 UTC) #16
Daniel Nishi
Ping.
4 years, 10 months ago (2016-02-05 17:26:18 UTC) #17
ncarter (slow)
nasko@ should be a better reviewer for this kind of change. I'm leaving a couple ...
4 years, 10 months ago (2016-02-09 18:59:45 UTC) #19
esprehn
Please also wrap your change description sensibly around 80 or 100 cols. https://codereview.chromium.org/1615133002/diff/100001/content/browser/font_access/font_access_service_impl.cc File content/browser/font_access/font_access_service_impl.cc ...
4 years, 10 months ago (2016-02-09 19:29:57 UTC) #20
esprehn
Please also wrap your change description sensibly around 80 or 100 cols. https://codereview.chromium.org/1615133002/diff/100001/content/browser/font_access/font_access_service_impl.cc File content/browser/font_access/font_access_service_impl.cc ...
4 years, 10 months ago (2016-02-09 19:29:57 UTC) #21
nasko
I have just started poking at this and only looked at the mojom files to ...
4 years, 10 months ago (2016-02-10 23:43:26 UTC) #22
Daniel Nishi
nasko@: For reference, that worst case scenario is unlikely to occur in practice. That said, ...
4 years, 10 months ago (2016-02-11 00:23:51 UTC) #24
nasko
I have an overall question of why we are doing this at all? The proposal ...
4 years, 10 months ago (2016-02-12 22:05:20 UTC) #26
Daniel Nishi
Thanks again, everyone, for taking the time to review my patch! :) Why the change ...
4 years, 10 months ago (2016-02-12 22:49:41 UTC) #27
Daniel Nishi
palmer@: PTAL at content/common/font_access/*.mojom, when you get a chance. Thanks!
4 years, 10 months ago (2016-02-17 00:48:51 UTC) #29
jam
can this cl patch the code from https://codereview.chromium.org/1615133002/ to call mojo from blink, and then ...
4 years, 10 months ago (2016-02-17 16:54:28 UTC) #30
eae
I'm surprised we're going ahead with this given that none of the concerns bought up ...
4 years, 10 months ago (2016-02-17 17:25:18 UTC) #31
palmer
4 years, 8 months ago (2016-04-04 20:28:01 UTC) #32
Can we close this CL, or move forward with it?

Powered by Google App Engine
This is Rietveld 408576698