| 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 1361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 switches::kDisableGpuVsync, | 1372 switches::kDisableGpuVsync, |
| 1373 switches::kDisableLowResTiling, | 1373 switches::kDisableLowResTiling, |
| 1374 switches::kDisableHistogramCustomizer, | 1374 switches::kDisableHistogramCustomizer, |
| 1375 switches::kDisableIconNtp, | 1375 switches::kDisableIconNtp, |
| 1376 switches::kDisableLCDText, | 1376 switches::kDisableLCDText, |
| 1377 switches::kDisableLocalStorage, | 1377 switches::kDisableLocalStorage, |
| 1378 switches::kDisableLogging, | 1378 switches::kDisableLogging, |
| 1379 switches::kDisableMediaSuspend, | 1379 switches::kDisableMediaSuspend, |
| 1380 switches::kDisableNotifications, | 1380 switches::kDisableNotifications, |
| 1381 switches::kDisableOverlayScrollbar, | 1381 switches::kDisableOverlayScrollbar, |
| 1382 switches::kDisablePepper3DImageChromium, |
| 1382 switches::kDisablePermissionsAPI, | 1383 switches::kDisablePermissionsAPI, |
| 1383 switches::kDisablePresentationAPI, | 1384 switches::kDisablePresentationAPI, |
| 1384 switches::kDisablePinch, | 1385 switches::kDisablePinch, |
| 1385 switches::kDisableRGBA4444Textures, | 1386 switches::kDisableRGBA4444Textures, |
| 1386 switches::kDisableRTCSmoothnessAlgorithm, | 1387 switches::kDisableRTCSmoothnessAlgorithm, |
| 1387 switches::kDisableSeccompFilterSandbox, | 1388 switches::kDisableSeccompFilterSandbox, |
| 1388 switches::kDisableSharedWorkers, | 1389 switches::kDisableSharedWorkers, |
| 1389 switches::kDisableSmoothScrolling, | 1390 switches::kDisableSmoothScrolling, |
| 1390 switches::kDisableSpeechAPI, | 1391 switches::kDisableSpeechAPI, |
| 1391 switches::kDisableThreadedCompositing, | 1392 switches::kDisableThreadedCompositing, |
| (...skipping 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2819 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; | 2820 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; |
| 2820 | 2821 |
| 2821 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias | 2822 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias |
| 2822 // enough information here so that we can determine what the bad message was. | 2823 // enough information here so that we can determine what the bad message was. |
| 2823 base::debug::Alias(&error); | 2824 base::debug::Alias(&error); |
| 2824 bad_message::ReceivedBadMessage(process.get(), | 2825 bad_message::ReceivedBadMessage(process.get(), |
| 2825 bad_message::RPH_MOJO_PROCESS_ERROR); | 2826 bad_message::RPH_MOJO_PROCESS_ERROR); |
| 2826 } | 2827 } |
| 2827 | 2828 |
| 2828 } // namespace content | 2829 } // namespace content |
| OLD | NEW |