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

Side by Side Diff: public/platform/mac/WebSandboxSupport.h

Issue 554033002: [Mac] Add a new WebSandboxSupport method to get the display's color space. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 | « Source/platform/image-decoders/ImageDecoder.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 13 matching lines...) Expand all
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef WebSandboxSupport_h 31 #ifndef WebSandboxSupport_h
32 #define WebSandboxSupport_h 32 #define WebSandboxSupport_h
33 33
34 typedef struct CGColorSpace* CGColorSpaceRef;
34 typedef struct CGFont* CGFontRef; 35 typedef struct CGFont* CGFontRef;
35 36
36 #ifdef __OBJC__ 37 #ifdef __OBJC__
37 @class NSFont; 38 @class NSFont;
38 #else 39 #else
39 class NSFont; 40 class NSFont;
40 #endif 41 #endif
41 42
42 namespace blink { 43 namespace blink {
43 44
44 // Put methods here that are required due to sandbox restrictions. 45 // Put methods here that are required due to sandbox restrictions.
45 class WebSandboxSupport { 46 class WebSandboxSupport {
46 public: 47 public:
47 // Given an input font - |srcFont| [which can't be loaded due to sandbox 48 // Given an input font - |srcFont| [which can't be loaded due to sandbox
48 // restrictions]. Return a font belonging to an equivalent font file 49 // restrictions]. Return a font belonging to an equivalent font file
49 // that can be used to access the font and a unique identifier corresponding 50 // that can be used to access the font and a unique identifier corresponding
50 // to the on-disk font file. 51 // to the on-disk font file.
51 // 52 //
52 // If this function succeeds, the caller assumes ownership of the |out| 53 // If this function succeeds, the caller assumes ownership of the |out|
53 // parameter and must call CGFontRelease() to unload it when done. 54 // parameter and must call CGFontRelease() to unload it when done.
54 // 55 //
55 // Returns: true on success, false on error. 56 // Returns: true on success, false on error.
56 virtual bool loadFont(NSFont* srcFont, CGFontRef* out, uint32_t* fontID) = 0 ; 57 virtual bool loadFont(NSFont* srcFont, CGFontRef* out, uint32_t* fontID) = 0 ;
58
59 // Returns the color space for the current display. The caller does not own
Avi (use Gerrit) 2014/09/08 20:14:56 And by "current" you mean "main". It's rather a b
Ken Russell (switch to Gerrit) 2014/09/08 21:34:57 Noel's actively working on adding per-screen color
Robert Sesek 2014/09/08 21:37:26 That's cool! This should make it easier to pipe do
60 // the result.
61 virtual CGColorSpaceRef displayColorSpace() = 0;
57 }; 62 };
58 63
59 } // namespace blink 64 } // namespace blink
60 65
61 #endif 66 #endif
OLDNEW
« no previous file with comments | « Source/platform/image-decoders/ImageDecoder.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698