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

Side by Side Diff: content/common/font_config_ipc_linux.h

Issue 697383002: Fix for the font files being maped multiple times (Fontconfig). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rewritten CL to address the fact that streams can be created and passed between different threads. Created 6 years, 1 month 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_COMMON_FONT_CONFIG_IPC_LINUX_H_ 5 #ifndef CONTENT_COMMON_FONT_CONFIG_IPC_LINUX_H_
6 #define CONTENT_COMMON_FONT_CONFIG_IPC_LINUX_H_ 6 #define CONTENT_COMMON_FONT_CONFIG_IPC_LINUX_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/containers/hash_tables.h"
10 #include "base/synchronization/lock.h"
9 #include "third_party/skia/include/ports/SkFontConfigInterface.h" 11 #include "third_party/skia/include/ports/SkFontConfigInterface.h"
10 12
11 #include <string> 13 #include <string>
12 14
13 namespace content { 15 namespace content {
14 16
15 // FontConfig implementation for Skia that proxies out of process to get out 17 // FontConfig implementation for Skia that proxies out of process to get out
16 // of the sandbox. See http://code.google.com/p/chromium/wiki/LinuxSandboxIPC 18 // of the sandbox. See http://code.google.com/p/chromium/wiki/LinuxSandboxIPC
17 class FontConfigIPC : public SkFontConfigInterface { 19 class FontConfigIPC : public SkFontConfigInterface {
18 public: 20 public:
(...skipping 11 matching lines...) Expand all
30 enum Method { 32 enum Method {
31 METHOD_MATCH = 0, 33 METHOD_MATCH = 0,
32 METHOD_OPEN = 1, 34 METHOD_OPEN = 1,
33 }; 35 };
34 36
35 enum { 37 enum {
36 kMaxFontFamilyLength = 2048 38 kMaxFontFamilyLength = 2048
37 }; 39 };
38 40
39 private: 41 private:
42 class MappedFontFile;
43 friend class MappedFontFile;
44
45 void RemoveMappedFontFile(MappedFontFile* mapped_font_file);
Daniel Erat 2014/11/07 15:07:36 add a comment: // Removes |mapped_font_file| fr
Krzysztof Olczyk 2015/01/14 12:42:23 Done
46
40 const int fd_; 47 const int fd_;
48 base::Lock stream_opening_lock_;
Daniel Erat 2014/11/07 15:07:36 please add a comment documenting what this lock pr
Krzysztof Olczyk 2015/01/14 12:42:23 Done
49 // Maps font identity ID to the memory-mapped file with font data:
Daniel Erat 2014/11/07 15:07:36 s/:/./
Krzysztof Olczyk 2015/01/14 12:42:23 Done
Krzysztof Olczyk 2015/01/14 12:42:23 Done
50 base::hash_map<uint32_t, MappedFontFile*> mapped_font_files_;
41 }; 51 };
42 52
43 } // namespace content 53 } // namespace content
44 54
45 #endif // CONTENT_COMMON_FONT_CONFIG_IPC_LINUX_H_ 55 #endif // CONTENT_COMMON_FONT_CONFIG_IPC_LINUX_H_
OLDNEW
« no previous file with comments | « no previous file | content/common/font_config_ipc_linux.cc » ('j') | content/common/font_config_ipc_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698