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 1658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1669 switches::kDisableNotifications, | 1669 switches::kDisableNotifications, |
1670 switches::kDisableOverlayScrollbar, | 1670 switches::kDisableOverlayScrollbar, |
1671 switches::kDisablePepper3DImageChromium, | 1671 switches::kDisablePepper3DImageChromium, |
1672 switches::kDisablePermissionsAPI, | 1672 switches::kDisablePermissionsAPI, |
1673 switches::kDisablePresentationAPI, | 1673 switches::kDisablePresentationAPI, |
1674 switches::kDisablePinch, | 1674 switches::kDisablePinch, |
1675 switches::kDisableRGBA4444Textures, | 1675 switches::kDisableRGBA4444Textures, |
1676 switches::kDisableRTCSmoothnessAlgorithm, | 1676 switches::kDisableRTCSmoothnessAlgorithm, |
1677 switches::kDisableSeccompFilterSandbox, | 1677 switches::kDisableSeccompFilterSandbox, |
1678 switches::kDisableSharedWorkers, | 1678 switches::kDisableSharedWorkers, |
| 1679 switches::kDisableSlimmingPaintInvalidation, |
1679 switches::kDisableSmoothScrolling, | 1680 switches::kDisableSmoothScrolling, |
1680 switches::kDisableSpeechAPI, | 1681 switches::kDisableSpeechAPI, |
1681 switches::kDisableThreadedCompositing, | 1682 switches::kDisableThreadedCompositing, |
1682 switches::kDisableThreadedScrolling, | 1683 switches::kDisableThreadedScrolling, |
1683 switches::kDisableTouchAdjustment, | 1684 switches::kDisableTouchAdjustment, |
1684 switches::kDisableTouchDragDrop, | 1685 switches::kDisableTouchDragDrop, |
1685 switches::kDisableV8IdleTasks, | 1686 switches::kDisableV8IdleTasks, |
1686 switches::kDisableWebGLImageChromium, | 1687 switches::kDisableWebGLImageChromium, |
1687 switches::kDomAutomationController, | 1688 switches::kDomAutomationController, |
1688 switches::kEnableBlinkFeatures, | 1689 switches::kEnableBlinkFeatures, |
(...skipping 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3003 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; | 3004 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; |
3004 | 3005 |
3005 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. | 3006 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. |
3006 // Capture the error message in a crash key value. | 3007 // Capture the error message in a crash key value. |
3007 base::debug::ScopedCrashKey error_key_value("mojo-message-error", error); | 3008 base::debug::ScopedCrashKey error_key_value("mojo-message-error", error); |
3008 bad_message::ReceivedBadMessage(render_process_id, | 3009 bad_message::ReceivedBadMessage(render_process_id, |
3009 bad_message::RPH_MOJO_PROCESS_ERROR); | 3010 bad_message::RPH_MOJO_PROCESS_ERROR); |
3010 } | 3011 } |
3011 | 3012 |
3012 } // namespace content | 3013 } // namespace content |
OLD | NEW |