| 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 1899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1910 switches::kDisableSpeechAPI, | 1910 switches::kDisableSpeechAPI, |
| 1911 switches::kDisableThreadedCompositing, | 1911 switches::kDisableThreadedCompositing, |
| 1912 switches::kDisableThreadedScrolling, | 1912 switches::kDisableThreadedScrolling, |
| 1913 switches::kDisableTouchAdjustment, | 1913 switches::kDisableTouchAdjustment, |
| 1914 switches::kDisableTouchDragDrop, | 1914 switches::kDisableTouchDragDrop, |
| 1915 switches::kDisableV8IdleTasks, | 1915 switches::kDisableV8IdleTasks, |
| 1916 switches::kDisableWebGLImageChromium, | 1916 switches::kDisableWebGLImageChromium, |
| 1917 switches::kDomAutomationController, | 1917 switches::kDomAutomationController, |
| 1918 switches::kEnableBlinkFeatures, | 1918 switches::kEnableBlinkFeatures, |
| 1919 switches::kEnableBrowserSideNavigation, | 1919 switches::kEnableBrowserSideNavigation, |
| 1920 switches::kEnableColorCanvasExtensions, |
| 1920 switches::kEnableColorCorrectRendering, | 1921 switches::kEnableColorCorrectRendering, |
| 1921 switches::kEnableColorCorrectRenderingDefaultMode, | |
| 1922 switches::kEnableDisplayList2dCanvas, | 1922 switches::kEnableDisplayList2dCanvas, |
| 1923 switches::kEnableDistanceFieldText, | 1923 switches::kEnableDistanceFieldText, |
| 1924 switches::kEnableExperimentalCanvasFeatures, | 1924 switches::kEnableExperimentalCanvasFeatures, |
| 1925 switches::kEnableExperimentalWebPlatformFeatures, | 1925 switches::kEnableExperimentalWebPlatformFeatures, |
| 1926 switches::kEnableHDR, | 1926 switches::kEnableHDR, |
| 1927 switches::kEnableHeapProfiling, | 1927 switches::kEnableHeapProfiling, |
| 1928 switches::kEnableGPUClientLogging, | 1928 switches::kEnableGPUClientLogging, |
| 1929 switches::kEnableGpuClientTracing, | 1929 switches::kEnableGpuClientTracing, |
| 1930 switches::kEnableGpuMemoryBufferVideoFrames, | 1930 switches::kEnableGpuMemoryBufferVideoFrames, |
| 1931 switches::kEnableGPUServiceLogging, | 1931 switches::kEnableGPUServiceLogging, |
| (...skipping 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3348 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; | 3348 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; |
| 3349 | 3349 |
| 3350 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. | 3350 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. |
| 3351 // Capture the error message in a crash key value. | 3351 // Capture the error message in a crash key value. |
| 3352 base::debug::ScopedCrashKey error_key_value("mojo-message-error", error); | 3352 base::debug::ScopedCrashKey error_key_value("mojo-message-error", error); |
| 3353 bad_message::ReceivedBadMessage(render_process_id, | 3353 bad_message::ReceivedBadMessage(render_process_id, |
| 3354 bad_message::RPH_MOJO_PROCESS_ERROR); | 3354 bad_message::RPH_MOJO_PROCESS_ERROR); |
| 3355 } | 3355 } |
| 3356 | 3356 |
| 3357 } // namespace content | 3357 } // namespace content |
| OLD | NEW |