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

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

Issue 2240043002: Remove WTF_LOG(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: foo Created 4 years, 4 months 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 | « chromecast/browser/cast_browser_main_parts.cc ('k') | content/public/common/content_switches.h » ('j') | 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 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 const base::CommandLine& browser_cmd, 1442 const base::CommandLine& browser_cmd,
1443 base::CommandLine* renderer_cmd) const { 1443 base::CommandLine* renderer_cmd) const {
1444 // Propagate the following switches to the renderer command line (along 1444 // Propagate the following switches to the renderer command line (along
1445 // with any associated values) if present in the browser command line. 1445 // with any associated values) if present in the browser command line.
1446 static const char* const kSwitchNames[] = { 1446 static const char* const kSwitchNames[] = {
1447 switches::kAgcStartupMinVolume, 1447 switches::kAgcStartupMinVolume,
1448 switches::kAecRefinedAdaptiveFilter, 1448 switches::kAecRefinedAdaptiveFilter,
1449 switches::kAllowLoopbackInPeerConnection, 1449 switches::kAllowLoopbackInPeerConnection,
1450 switches::kAndroidFontsPath, 1450 switches::kAndroidFontsPath,
1451 switches::kAudioBufferSize, 1451 switches::kAudioBufferSize,
1452 switches::kBlinkPlatformLogChannels,
1453 switches::kBlinkSettings, 1452 switches::kBlinkSettings,
1454 switches::kDefaultTileWidth, 1453 switches::kDefaultTileWidth,
1455 switches::kDefaultTileHeight, 1454 switches::kDefaultTileHeight,
1456 switches::kDisable2dCanvasImageChromium, 1455 switches::kDisable2dCanvasImageChromium,
1457 switches::kDisable3DAPIs, 1456 switches::kDisable3DAPIs,
1458 switches::kDisableAcceleratedJpegDecoding, 1457 switches::kDisableAcceleratedJpegDecoding,
1459 switches::kDisableAcceleratedVideoDecode, 1458 switches::kDisableAcceleratedVideoDecode,
1460 switches::kDisableBlinkFeatures, 1459 switches::kDisableBlinkFeatures,
1461 switches::kDisableBreakpad, 1460 switches::kDisableBreakpad,
1462 switches::kDisablePreferCompositingToLCDText, 1461 switches::kDisablePreferCompositingToLCDText,
(...skipping 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after
2839 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 2838 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
2840 2839
2841 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 2840 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
2842 // enough information here so that we can determine what the bad message was. 2841 // enough information here so that we can determine what the bad message was.
2843 base::debug::Alias(&error); 2842 base::debug::Alias(&error);
2844 bad_message::ReceivedBadMessage(process.get(), 2843 bad_message::ReceivedBadMessage(process.get(),
2845 bad_message::RPH_MOJO_PROCESS_ERROR); 2844 bad_message::RPH_MOJO_PROCESS_ERROR);
2846 } 2845 }
2847 2846
2848 } // namespace content 2847 } // namespace content
OLDNEW
« no previous file with comments | « chromecast/browser/cast_browser_main_parts.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698