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

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

Issue 266743003: Add flag to enable rendering of text using signed distance fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bug fix; requested clean-up Created 6 years, 7 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 // 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 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after
1026 switches::kDisable3DAPIs, 1026 switches::kDisable3DAPIs,
1027 switches::kDisableAcceleratedFixedRootBackground, 1027 switches::kDisableAcceleratedFixedRootBackground,
1028 switches::kDisableAcceleratedVideoDecode, 1028 switches::kDisableAcceleratedVideoDecode,
1029 switches::kDisableApplicationCache, 1029 switches::kDisableApplicationCache,
1030 switches::kDisableBreakpad, 1030 switches::kDisableBreakpad,
1031 switches::kDisableCompositingForFixedPosition, 1031 switches::kDisableCompositingForFixedPosition,
1032 switches::kDisableCompositingForTransition, 1032 switches::kDisableCompositingForTransition,
1033 switches::kDisableDatabases, 1033 switches::kDisableDatabases,
1034 switches::kDisableDesktopNotifications, 1034 switches::kDisableDesktopNotifications,
1035 switches::kDisableDirectNPAPIRequests, 1035 switches::kDisableDirectNPAPIRequests,
1036 switches::kDisableDistanceFieldText,
1036 switches::kDisableFastTextAutosizing, 1037 switches::kDisableFastTextAutosizing,
1037 switches::kDisableFileSystem, 1038 switches::kDisableFileSystem,
1038 switches::kDisableFiltersOverIPC, 1039 switches::kDisableFiltersOverIPC,
1039 switches::kDisableGpuCompositing, 1040 switches::kDisableGpuCompositing,
1040 switches::kDisableGpuVsync, 1041 switches::kDisableGpuVsync,
1041 switches::kDisableLowResTiling, 1042 switches::kDisableLowResTiling,
1042 switches::kDisableHistogramCustomizer, 1043 switches::kDisableHistogramCustomizer,
1043 switches::kDisableLCDText, 1044 switches::kDisableLCDText,
1044 switches::kDisableLayerSquashing, 1045 switches::kDisableLayerSquashing,
1045 switches::kDisableLocalStorage, 1046 switches::kDisableLocalStorage,
(...skipping 15 matching lines...) Expand all
1061 switches::kDomAutomationController, 1062 switches::kDomAutomationController,
1062 switches::kEnableAcceleratedFixedRootBackground, 1063 switches::kEnableAcceleratedFixedRootBackground,
1063 switches::kEnableAcceleratedOverflowScroll, 1064 switches::kEnableAcceleratedOverflowScroll,
1064 switches::kEnableAccessibilityLogging, 1065 switches::kEnableAccessibilityLogging,
1065 switches::kEnableADTSStreamParser, 1066 switches::kEnableADTSStreamParser,
1066 switches::kEnableBeginFrameScheduling, 1067 switches::kEnableBeginFrameScheduling,
1067 switches::kEnableBleedingEdgeRenderingFastPaths, 1068 switches::kEnableBleedingEdgeRenderingFastPaths,
1068 switches::kEnableCompositingForFixedPosition, 1069 switches::kEnableCompositingForFixedPosition,
1069 switches::kEnableCompositingForTransition, 1070 switches::kEnableCompositingForTransition,
1070 switches::kEnableDeferredImageDecoding, 1071 switches::kEnableDeferredImageDecoding,
1072 switches::kEnableDistanceFieldText,
1071 switches::kEnableEncryptedMedia, 1073 switches::kEnableEncryptedMedia,
1072 switches::kEnableExperimentalCanvasFeatures, 1074 switches::kEnableExperimentalCanvasFeatures,
1073 switches::kEnableExperimentalWebPlatformFeatures, 1075 switches::kEnableExperimentalWebPlatformFeatures,
1074 switches::kEnableFastTextAutosizing, 1076 switches::kEnableFastTextAutosizing,
1075 switches::kEnableGPUClientLogging, 1077 switches::kEnableGPUClientLogging,
1076 switches::kEnableGpuClientTracing, 1078 switches::kEnableGpuClientTracing,
1077 switches::kEnableGPUServiceLogging, 1079 switches::kEnableGPUServiceLogging,
1078 switches::kEnableHighDpiCompositingForFixedPosition, 1080 switches::kEnableHighDpiCompositingForFixedPosition,
1079 switches::kEnableLowResTiling, 1081 switches::kEnableLowResTiling,
1080 switches::kEnableInbandTextTracks, 1082 switches::kEnableInbandTextTracks,
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 mojo::ScopedMessagePipeHandle handle) { 2077 mojo::ScopedMessagePipeHandle handle) {
2076 mojo_activation_required_ = true; 2078 mojo_activation_required_ = true;
2077 MaybeActivateMojo(); 2079 MaybeActivateMojo();
2078 2080
2079 mojo::AllocationScope scope; 2081 mojo::AllocationScope scope;
2080 mojo_application_host_->shell_client()->AcceptConnection(service_name, 2082 mojo_application_host_->shell_client()->AcceptConnection(service_name,
2081 handle.Pass()); 2083 handle.Pass());
2082 } 2084 }
2083 2085
2084 } // namespace content 2086 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698