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

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

Issue 284203005: Get rid of enable-accessibility-logging switch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/public/common/content_switches.h » ('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 1042 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 switches::kDisableSessionStorage, 1053 switches::kDisableSessionStorage,
1054 switches::kDisableSharedWorkers, 1054 switches::kDisableSharedWorkers,
1055 switches::kDisableTouchAdjustment, 1055 switches::kDisableTouchAdjustment,
1056 switches::kDisableTouchDragDrop, 1056 switches::kDisableTouchDragDrop,
1057 switches::kDisableTouchEditing, 1057 switches::kDisableTouchEditing,
1058 switches::kDisableUniversalAcceleratedOverflowScroll, 1058 switches::kDisableUniversalAcceleratedOverflowScroll,
1059 switches::kDisableZeroCopy, 1059 switches::kDisableZeroCopy,
1060 switches::kDomAutomationController, 1060 switches::kDomAutomationController,
1061 switches::kEnableAcceleratedFixedRootBackground, 1061 switches::kEnableAcceleratedFixedRootBackground,
1062 switches::kEnableAcceleratedOverflowScroll, 1062 switches::kEnableAcceleratedOverflowScroll,
1063 switches::kEnableAccessibilityLogging,
1064 switches::kEnableADTSStreamParser, 1063 switches::kEnableADTSStreamParser,
1065 switches::kEnableBeginFrameScheduling, 1064 switches::kEnableBeginFrameScheduling,
1066 switches::kEnableBleedingEdgeRenderingFastPaths, 1065 switches::kEnableBleedingEdgeRenderingFastPaths,
1067 switches::kEnableCompositingForFixedPosition, 1066 switches::kEnableCompositingForFixedPosition,
1068 switches::kEnableCompositingForTransition, 1067 switches::kEnableCompositingForTransition,
1069 switches::kEnableDeferredImageDecoding, 1068 switches::kEnableDeferredImageDecoding,
1070 switches::kEnableDistanceFieldText, 1069 switches::kEnableDistanceFieldText,
1071 switches::kEnableEncryptedMedia, 1070 switches::kEnableEncryptedMedia,
1072 switches::kEnableExperimentalCanvasFeatures, 1071 switches::kEnableExperimentalCanvasFeatures,
1073 switches::kEnableExperimentalWebPlatformFeatures, 1072 switches::kEnableExperimentalWebPlatformFeatures,
(...skipping 1001 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 mojo::ScopedMessagePipeHandle handle) { 2074 mojo::ScopedMessagePipeHandle handle) {
2076 mojo_activation_required_ = true; 2075 mojo_activation_required_ = true;
2077 MaybeActivateMojo(); 2076 MaybeActivateMojo();
2078 2077
2079 mojo::AllocationScope scope; 2078 mojo::AllocationScope scope;
2080 mojo_application_host_->shell_client()->AcceptConnection(service_name, 2079 mojo_application_host_->shell_client()->AcceptConnection(service_name,
2081 handle.Pass()); 2080 handle.Pass());
2082 } 2081 }
2083 2082
2084 } // namespace content 2083 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698