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

Side by Side Diff: third_party/WebKit/public/platform/Platform.h

Issue 1615133002: Implement API for accessing fonts installed locally on the system. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing Nasko. Created 4 years, 10 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 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 class WebCompositorSupport; 66 class WebCompositorSupport;
67 class WebCookieJar; 67 class WebCookieJar;
68 class WebCrypto; 68 class WebCrypto;
69 class WebDatabaseObserver; 69 class WebDatabaseObserver;
70 class WebDiscardableMemory; 70 class WebDiscardableMemory;
71 class WebPlatformEventListener; 71 class WebPlatformEventListener;
72 class WebFallbackThemeEngine; 72 class WebFallbackThemeEngine;
73 class WebFileSystem; 73 class WebFileSystem;
74 class WebFileUtilities; 74 class WebFileUtilities;
75 class WebFlingAnimator; 75 class WebFlingAnimator;
76 class WebFontAccess;
76 class WebGeofencingProvider; 77 class WebGeofencingProvider;
77 class WebGestureCurve; 78 class WebGestureCurve;
78 class WebGraphicsContext3DProvider; 79 class WebGraphicsContext3DProvider;
79 class WebIDBFactory; 80 class WebIDBFactory;
80 class WebMIDIAccessor; 81 class WebMIDIAccessor;
81 class WebMIDIAccessorClient; 82 class WebMIDIAccessorClient;
82 class WebMediaPlayer; 83 class WebMediaPlayer;
83 class WebMediaRecorderHandler; 84 class WebMediaRecorderHandler;
84 class WebMediaStream; 85 class WebMediaStream;
85 class WebMediaStreamCenter; 86 class WebMediaStreamCenter;
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 605
605 // Permissions -------------------------------------------------------- 606 // Permissions --------------------------------------------------------
606 607
607 virtual WebPermissionClient* permissionClient() { return nullptr; } 608 virtual WebPermissionClient* permissionClient() { return nullptr; }
608 609
609 610
610 // Background Sync API------------------------------------------------------ ------ 611 // Background Sync API------------------------------------------------------ ------
611 612
612 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } 613 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; }
613 614
615 // Local Font Access API -----------------------------------------------
616
617 virtual WebFontAccess* fontAccess() { return nullptr; }
618
614 // Experimental Framework ---------------------------------------------- 619 // Experimental Framework ----------------------------------------------
615 620
616 virtual WebTrialTokenValidator* trialTokenValidator() { return nullptr; } 621 virtual WebTrialTokenValidator* trialTokenValidator() { return nullptr; }
617 622
618 protected: 623 protected:
619 BLINK_PLATFORM_EXPORT Platform(); 624 BLINK_PLATFORM_EXPORT Platform();
620 virtual ~Platform() { } 625 virtual ~Platform() { }
621 626
622 WebThread* m_mainThread; 627 WebThread* m_mainThread;
623 }; 628 };
624 629
625 } // namespace blink 630 } // namespace blink
626 631
627 #endif 632 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698