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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 66333016: Add DirectWrite flag and plumb it through to Blink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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 | Annotate | Revision Log
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 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 switches::kEnableAccessibilityLogging, 935 switches::kEnableAccessibilityLogging,
936 switches::kEnableBeginFrameScheduling, 936 switches::kEnableBeginFrameScheduling,
937 switches::kEnableBrowserPluginForAllViewTypes, 937 switches::kEnableBrowserPluginForAllViewTypes,
938 switches::kEnableCompositedScrollingForFrames, 938 switches::kEnableCompositedScrollingForFrames,
939 switches::kEnableCompositingForFixedPosition, 939 switches::kEnableCompositingForFixedPosition,
940 switches::kEnableCompositingForTransition, 940 switches::kEnableCompositingForTransition,
941 switches::kEnableDCHECK, 941 switches::kEnableDCHECK,
942 switches::kEnableDeadlineScheduling, 942 switches::kEnableDeadlineScheduling,
943 switches::kEnableDeferredImageDecoding, 943 switches::kEnableDeferredImageDecoding,
944 switches::kEnableDelegatedRenderer, 944 switches::kEnableDelegatedRenderer,
945 switches::kEnableDirectWrite,
945 switches::kEnableEac3Playback, 946 switches::kEnableEac3Playback,
946 switches::kEnableEncryptedMedia, 947 switches::kEnableEncryptedMedia,
947 switches::kEnableExperimentalCanvasFeatures, 948 switches::kEnableExperimentalCanvasFeatures,
948 switches::kEnableExperimentalWebPlatformFeatures, 949 switches::kEnableExperimentalWebPlatformFeatures,
949 switches::kEnableExperimentalWebSocket, 950 switches::kEnableExperimentalWebSocket,
950 switches::kEnableFastTextAutosizing, 951 switches::kEnableFastTextAutosizing,
951 switches::kEnableGpuBenchmarking, 952 switches::kEnableGpuBenchmarking,
952 switches::kEnableGPUClientLogging, 953 switches::kEnableGPUClientLogging,
953 switches::kEnableGpuClientTracing, 954 switches::kEnableGpuClientTracing,
954 switches::kEnableGPUServiceLogging, 955 switches::kEnableGPUServiceLogging,
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after
1844 // Skip widgets in other processes. 1845 // Skip widgets in other processes.
1845 if (widget->GetProcess()->GetID() != GetID()) 1846 if (widget->GetProcess()->GetID() != GetID())
1846 continue; 1847 continue;
1847 1848
1848 RenderViewHost* rvh = RenderViewHost::From(widget); 1849 RenderViewHost* rvh = RenderViewHost::From(widget);
1849 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1850 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1850 } 1851 }
1851 } 1852 }
1852 1853
1853 } // namespace content 1854 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698