| 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 1678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1689 switches::kEnableSlimmingPaintV2, | 1689 switches::kEnableSlimmingPaintV2, |
| 1690 switches::kEnableSmoothScrolling, | 1690 switches::kEnableSmoothScrolling, |
| 1691 switches::kEnableStatsTable, | 1691 switches::kEnableStatsTable, |
| 1692 switches::kEnableThreadedCompositing, | 1692 switches::kEnableThreadedCompositing, |
| 1693 switches::kEnableTouchDragDrop, | 1693 switches::kEnableTouchDragDrop, |
| 1694 switches::kEnableUnsafeES3APIs, | 1694 switches::kEnableUnsafeES3APIs, |
| 1695 switches::kEnableUseZoomForDSF, | 1695 switches::kEnableUseZoomForDSF, |
| 1696 switches::kEnableViewport, | 1696 switches::kEnableViewport, |
| 1697 switches::kEnableVp9InMp4, | 1697 switches::kEnableVp9InMp4, |
| 1698 switches::kEnableVtune, | 1698 switches::kEnableVtune, |
| 1699 switches::kEnableWebBluetooth, | |
| 1700 switches::kEnableWebFontsInterventionTrigger, | 1699 switches::kEnableWebFontsInterventionTrigger, |
| 1701 switches::kEnableWebFontsInterventionV2, | 1700 switches::kEnableWebFontsInterventionV2, |
| 1702 switches::kEnableWebGLDraftExtensions, | 1701 switches::kEnableWebGLDraftExtensions, |
| 1703 switches::kEnableWebGLImageChromium, | 1702 switches::kEnableWebGLImageChromium, |
| 1704 switches::kEnableWebVR, | 1703 switches::kEnableWebVR, |
| 1705 switches::kExplicitlyAllowedPorts, | 1704 switches::kExplicitlyAllowedPorts, |
| 1706 switches::kForceDeviceScaleFactor, | 1705 switches::kForceDeviceScaleFactor, |
| 1707 switches::kForceDisplayList2dCanvas, | 1706 switches::kForceDisplayList2dCanvas, |
| 1708 switches::kEnableCanvas2dDynamicRenderingModeSwitching, | 1707 switches::kEnableCanvas2dDynamicRenderingModeSwitching, |
| 1709 switches::kForceOverlayFullscreenVideo, | 1708 switches::kForceOverlayFullscreenVideo, |
| (...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2994 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; | 2993 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; |
| 2995 | 2994 |
| 2996 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias | 2995 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias |
| 2997 // enough information here so that we can determine what the bad message was. | 2996 // enough information here so that we can determine what the bad message was. |
| 2998 base::debug::Alias(&error); | 2997 base::debug::Alias(&error); |
| 2999 bad_message::ReceivedBadMessage(render_process_id, | 2998 bad_message::ReceivedBadMessage(render_process_id, |
| 3000 bad_message::RPH_MOJO_PROCESS_ERROR); | 2999 bad_message::RPH_MOJO_PROCESS_ERROR); |
| 3001 } | 3000 } |
| 3002 | 3001 |
| 3003 } // namespace content | 3002 } // namespace content |
| OLD | NEW |