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

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

Issue 756703002: disable link disambiguation by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2171_62
Patch Set: Created 6 years 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 | « chrome/browser/about_flags.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 switches::kEnableCompositingForTransition, 1125 switches::kEnableCompositingForTransition,
1126 switches::kEnableDeferredImageDecoding, 1126 switches::kEnableDeferredImageDecoding,
1127 switches::kEnableDisplayList2dCanvas, 1127 switches::kEnableDisplayList2dCanvas,
1128 switches::kEnableDistanceFieldText, 1128 switches::kEnableDistanceFieldText,
1129 switches::kEnableEncryptedMedia, 1129 switches::kEnableEncryptedMedia,
1130 switches::kEnableExperimentalCanvasFeatures, 1130 switches::kEnableExperimentalCanvasFeatures,
1131 switches::kEnableExperimentalWebPlatformFeatures, 1131 switches::kEnableExperimentalWebPlatformFeatures,
1132 switches::kEnableGPUClientLogging, 1132 switches::kEnableGPUClientLogging,
1133 switches::kEnableGpuClientTracing, 1133 switches::kEnableGpuClientTracing,
1134 switches::kEnableGPUServiceLogging, 1134 switches::kEnableGPUServiceLogging,
1135 switches::kEnableLinkDisambiguationPopup,
1135 switches::kEnableLowResTiling, 1136 switches::kEnableLowResTiling,
1136 switches::kEnableInbandTextTracks, 1137 switches::kEnableInbandTextTracks,
1137 switches::kEnableLCDText, 1138 switches::kEnableLCDText,
1138 switches::kEnableLayerSquashing, 1139 switches::kEnableLayerSquashing,
1139 switches::kEnableLogging, 1140 switches::kEnableLogging,
1140 switches::kEnableMemoryBenchmarking, 1141 switches::kEnableMemoryBenchmarking,
1141 switches::kEnableNetworkInformation, 1142 switches::kEnableNetworkInformation,
1142 switches::kEnableOneCopy, 1143 switches::kEnableOneCopy,
1143 switches::kEnableOverlayFullscreenVideo, 1144 switches::kEnableOverlayFullscreenVideo,
1144 switches::kEnableOverlayScrollbar, 1145 switches::kEnableOverlayScrollbar,
(...skipping 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after
2246 if (worker_ref_count_ == 0) 2247 if (worker_ref_count_ == 0)
2247 Cleanup(); 2248 Cleanup();
2248 } 2249 }
2249 2250
2250 void RenderProcessHostImpl::EnsureMojoActivated() { 2251 void RenderProcessHostImpl::EnsureMojoActivated() {
2251 mojo_activation_required_ = true; 2252 mojo_activation_required_ = true;
2252 MaybeActivateMojo(); 2253 MaybeActivateMojo();
2253 } 2254 }
2254 2255
2255 } // namespace content 2256 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698