| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 1652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1663 switches::kDisableSeccompFilterSandbox, | 1663 switches::kDisableSeccompFilterSandbox, |
| 1664 switches::kDisableSharedWorkers, | 1664 switches::kDisableSharedWorkers, |
| 1665 switches::kDisableSmoothScrolling, | 1665 switches::kDisableSmoothScrolling, |
| 1666 switches::kDisableSpeechAPI, | 1666 switches::kDisableSpeechAPI, |
| 1667 switches::kDisableThreadedCompositing, | 1667 switches::kDisableThreadedCompositing, |
| 1668 switches::kDisableThreadedScrolling, | 1668 switches::kDisableThreadedScrolling, |
| 1669 switches::kDisableTouchAdjustment, | 1669 switches::kDisableTouchAdjustment, |
| 1670 switches::kDisableTouchDragDrop, | 1670 switches::kDisableTouchDragDrop, |
| 1671 switches::kDisableV8IdleTasks, | 1671 switches::kDisableV8IdleTasks, |
| 1672 switches::kDisableWebGLImageChromium, | 1672 switches::kDisableWebGLImageChromium, |
| 1673 switches::kDisableWebVrGestureRequirementForTests, |
| 1673 switches::kDomAutomationController, | 1674 switches::kDomAutomationController, |
| 1674 switches::kEnableBlinkFeatures, | 1675 switches::kEnableBlinkFeatures, |
| 1675 switches::kEnableBrowserSideNavigation, | 1676 switches::kEnableBrowserSideNavigation, |
| 1676 switches::kEnableDisplayList2dCanvas, | 1677 switches::kEnableDisplayList2dCanvas, |
| 1677 switches::kEnableDistanceFieldText, | 1678 switches::kEnableDistanceFieldText, |
| 1678 switches::kEnableExperimentalCanvasFeatures, | 1679 switches::kEnableExperimentalCanvasFeatures, |
| 1679 switches::kEnableExperimentalWebPlatformFeatures, | 1680 switches::kEnableExperimentalWebPlatformFeatures, |
| 1680 switches::kEnableHeapProfiling, | 1681 switches::kEnableHeapProfiling, |
| 1681 switches::kEnableGPUClientLogging, | 1682 switches::kEnableGPUClientLogging, |
| 1682 switches::kEnableGpuClientTracing, | 1683 switches::kEnableGpuClientTracing, |
| (...skipping 1317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3000 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; | 3001 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; |
| 3001 | 3002 |
| 3002 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias | 3003 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias |
| 3003 // enough information here so that we can determine what the bad message was. | 3004 // enough information here so that we can determine what the bad message was. |
| 3004 base::debug::Alias(&error); | 3005 base::debug::Alias(&error); |
| 3005 bad_message::ReceivedBadMessage(render_process_id, | 3006 bad_message::ReceivedBadMessage(render_process_id, |
| 3006 bad_message::RPH_MOJO_PROCESS_ERROR); | 3007 bad_message::RPH_MOJO_PROCESS_ERROR); |
| 3007 } | 3008 } |
| 3008 | 3009 |
| 3009 } // namespace content | 3010 } // namespace content |
| OLD | NEW |