|
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
Total comments: 24
Total comments: 19
Total comments: 2
Total comments: 2
Total comments: 52
Total comments: 46
|
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
|
Total messages: 32 (8 generated)
|