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

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 1122163002: Ensure that the DirectWrite font cache works in Chrome canary on Windows 8+ with AppContainer prote… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_process_host_impl.h
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
index 5a6935b251481faacf98659a18836d8e3977c903..d2c7b35b902a8fec9980987838846df074dcdf5f 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -24,6 +24,12 @@
#include "ui/gfx/gpu_memory_buffer.h"
#include "ui/gl/gpu_switching_observer.h"
+#if defined(OS_WIN)
+namespace base {
+class SharedMemory;
+}
+#endif
+
namespace base {
class CommandLine;
class MessageLoop;
@@ -476,6 +482,10 @@ class CONTENT_EXPORT RenderProcessHostImpl
WebRtcStopRtpDumpCallback stop_rtp_dump_callback_;
#endif
+#if defined(OS_WIN)
+ base::SharedMemory direct_write_font_cache_section_;
+#endif
+
int worker_ref_count_;
// Records the time when the process starts surviving for workers for UMA.

Powered by Google App Engine
This is Rietveld 408576698