Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 2503303002: ps test.
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1757 matching lines...) Expand 10 before | Expand all | Expand 10 after
1768 cc::switches::kEnableGpuBenchmarking, 1768 cc::switches::kEnableGpuBenchmarking,
1769 cc::switches::kEnableLayerLists, 1769 cc::switches::kEnableLayerLists,
1770 cc::switches::kEnableTileCompression, 1770 cc::switches::kEnableTileCompression,
1771 cc::switches::kShowCompositedLayerBorders, 1771 cc::switches::kShowCompositedLayerBorders,
1772 cc::switches::kShowFPSCounter, 1772 cc::switches::kShowFPSCounter,
1773 cc::switches::kShowLayerAnimationBounds, 1773 cc::switches::kShowLayerAnimationBounds,
1774 cc::switches::kShowPropertyChangedRects, 1774 cc::switches::kShowPropertyChangedRects,
1775 cc::switches::kShowScreenSpaceRects, 1775 cc::switches::kShowScreenSpaceRects,
1776 cc::switches::kShowSurfaceDamageRects, 1776 cc::switches::kShowSurfaceDamageRects,
1777 cc::switches::kSlowDownRasterScaleFactor, 1777 cc::switches::kSlowDownRasterScaleFactor,
1778 cc::switches::kTilingIterator,
1778 cc::switches::kBrowserControlsHideThreshold, 1779 cc::switches::kBrowserControlsHideThreshold,
1779 cc::switches::kBrowserControlsShowThreshold, 1780 cc::switches::kBrowserControlsShowThreshold,
1780 1781
1781 #if defined(ENABLE_PLUGINS) 1782 #if defined(ENABLE_PLUGINS)
1782 switches::kEnablePepperTesting, 1783 switches::kEnablePepperTesting,
1783 #endif 1784 #endif
1784 #if defined(ENABLE_WEBRTC) 1785 #if defined(ENABLE_WEBRTC)
1785 switches::kDisableWebRtcHWDecoding, 1786 switches::kDisableWebRtcHWDecoding,
1786 switches::kDisableWebRtcHWEncoding, 1787 switches::kDisableWebRtcHWEncoding,
1787 switches::kEnableWebRtcStunOrigin, 1788 switches::kEnableWebRtcStunOrigin,
(...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after
2997 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 2998 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
2998 2999
2999 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 3000 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
3000 // enough information here so that we can determine what the bad message was. 3001 // enough information here so that we can determine what the bad message was.
3001 base::debug::Alias(&error); 3002 base::debug::Alias(&error);
3002 bad_message::ReceivedBadMessage(render_process_id, 3003 bad_message::ReceivedBadMessage(render_process_id,
3003 bad_message::RPH_MOJO_PROCESS_ERROR); 3004 bad_message::RPH_MOJO_PROCESS_ERROR);
3004 } 3005 }
3005 3006
3006 } // namespace content 3007 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698