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 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1385 switches::kDisableGpuVsync, | 1385 switches::kDisableGpuVsync, |
1386 switches::kDisableLowResTiling, | 1386 switches::kDisableLowResTiling, |
1387 switches::kDisableHistogramCustomizer, | 1387 switches::kDisableHistogramCustomizer, |
1388 switches::kDisableIconNtp, | 1388 switches::kDisableIconNtp, |
1389 switches::kDisableLCDText, | 1389 switches::kDisableLCDText, |
1390 switches::kDisableLocalStorage, | 1390 switches::kDisableLocalStorage, |
1391 switches::kDisableLogging, | 1391 switches::kDisableLogging, |
1392 switches::kDisableMediaSuspend, | 1392 switches::kDisableMediaSuspend, |
1393 switches::kDisableNotifications, | 1393 switches::kDisableNotifications, |
1394 switches::kDisableOverlayScrollbar, | 1394 switches::kDisableOverlayScrollbar, |
| 1395 switches::kDisablePepper3DImageChromium, |
1395 switches::kDisablePermissionsAPI, | 1396 switches::kDisablePermissionsAPI, |
1396 switches::kDisablePresentationAPI, | 1397 switches::kDisablePresentationAPI, |
1397 switches::kDisablePinch, | 1398 switches::kDisablePinch, |
1398 switches::kDisableRGBA4444Textures, | 1399 switches::kDisableRGBA4444Textures, |
1399 switches::kDisableRTCSmoothnessAlgorithm, | 1400 switches::kDisableRTCSmoothnessAlgorithm, |
1400 switches::kDisableSeccompFilterSandbox, | 1401 switches::kDisableSeccompFilterSandbox, |
1401 switches::kDisableSharedWorkers, | 1402 switches::kDisableSharedWorkers, |
1402 switches::kDisableSmoothScrolling, | 1403 switches::kDisableSmoothScrolling, |
1403 switches::kDisableSpeechAPI, | 1404 switches::kDisableSpeechAPI, |
1404 switches::kDisableThreadedCompositing, | 1405 switches::kDisableThreadedCompositing, |
(...skipping 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2830 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; | 2831 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; |
2831 | 2832 |
2832 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias | 2833 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias |
2833 // enough information here so that we can determine what the bad message was. | 2834 // enough information here so that we can determine what the bad message was. |
2834 base::debug::Alias(&error); | 2835 base::debug::Alias(&error); |
2835 bad_message::ReceivedBadMessage(process.get(), | 2836 bad_message::ReceivedBadMessage(process.get(), |
2836 bad_message::RPH_MOJO_PROCESS_ERROR); | 2837 bad_message::RPH_MOJO_PROCESS_ERROR); |
2837 } | 2838 } |
2838 | 2839 |
2839 } // namespace content | 2840 } // namespace content |
OLD | NEW |