| 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 1692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1703 switches::kV, | 1703 switches::kV, |
| 1704 switches::kV8CacheStrategiesForCacheStorage, | 1704 switches::kV8CacheStrategiesForCacheStorage, |
| 1705 switches::kVideoThreads, | 1705 switches::kVideoThreads, |
| 1706 switches::kVideoUnderflowThresholdMs, | 1706 switches::kVideoUnderflowThresholdMs, |
| 1707 switches::kVModule, | 1707 switches::kVModule, |
| 1708 // Please keep these in alphabetical order. Compositor switches here should | 1708 // Please keep these in alphabetical order. Compositor switches here should |
| 1709 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1709 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1710 cc::switches::kDisableCachedPictureRaster, | 1710 cc::switches::kDisableCachedPictureRaster, |
| 1711 cc::switches::kDisableCompositedAntialiasing, | 1711 cc::switches::kDisableCompositedAntialiasing, |
| 1712 cc::switches::kDisableThreadedAnimation, | 1712 cc::switches::kDisableThreadedAnimation, |
| 1713 cc::switches::kEnableColorCorrectRendering, |
| 1713 cc::switches::kEnableGpuBenchmarking, | 1714 cc::switches::kEnableGpuBenchmarking, |
| 1714 cc::switches::kEnableLayerLists, | 1715 cc::switches::kEnableLayerLists, |
| 1715 cc::switches::kEnableTileCompression, | 1716 cc::switches::kEnableTileCompression, |
| 1716 cc::switches::kShowCompositedLayerBorders, | 1717 cc::switches::kShowCompositedLayerBorders, |
| 1717 cc::switches::kShowFPSCounter, | 1718 cc::switches::kShowFPSCounter, |
| 1718 cc::switches::kShowLayerAnimationBounds, | 1719 cc::switches::kShowLayerAnimationBounds, |
| 1719 cc::switches::kShowPropertyChangedRects, | 1720 cc::switches::kShowPropertyChangedRects, |
| 1720 cc::switches::kShowReplicaScreenSpaceRects, | 1721 cc::switches::kShowReplicaScreenSpaceRects, |
| 1721 cc::switches::kShowScreenSpaceRects, | 1722 cc::switches::kShowScreenSpaceRects, |
| 1722 cc::switches::kShowSurfaceDamageRects, | 1723 cc::switches::kShowSurfaceDamageRects, |
| (...skipping 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2965 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; | 2966 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; |
| 2966 | 2967 |
| 2967 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias | 2968 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias |
| 2968 // enough information here so that we can determine what the bad message was. | 2969 // enough information here so that we can determine what the bad message was. |
| 2969 base::debug::Alias(&error); | 2970 base::debug::Alias(&error); |
| 2970 bad_message::ReceivedBadMessage(process.get(), | 2971 bad_message::ReceivedBadMessage(process.get(), |
| 2971 bad_message::RPH_MOJO_PROCESS_ERROR); | 2972 bad_message::RPH_MOJO_PROCESS_ERROR); |
| 2972 } | 2973 } |
| 2973 | 2974 |
| 2974 } // namespace content | 2975 } // namespace content |
| OLD | NEW |