diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-12 21:28:01 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-12 21:28:01 +0000 |
commit | 201028d68651c5c2d6f848e98f844d8f0820b0ac (patch) | |
tree | 72fefe50ca95c19346490d32679c17a61ec320f4 /chrome/browser/renderer_host | |
parent | 8f5773e31f7ce990c50be202b152dc82a0ea364b (diff) | |
download | chromium_src-201028d68651c5c2d6f848e98f844d8f0820b0ac.zip chromium_src-201028d68651c5c2d6f848e98f844d8f0820b0ac.tar.gz chromium_src-201028d68651c5c2d6f848e98f844d8f0820b0ac.tar.bz2 |
Misc. cleanups noticed while working on another change.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/601059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38948 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/renderer_host')
-rw-r--r-- | chrome/browser/renderer_host/browser_render_process_host.cc | 6 | ||||
-rw-r--r-- | chrome/browser/renderer_host/browser_render_process_host.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/renderer_host/browser_render_process_host.cc b/chrome/browser/renderer_host/browser_render_process_host.cc index 1822c07..6e18eee 100644 --- a/chrome/browser/renderer_host/browser_render_process_host.cc +++ b/chrome/browser/renderer_host/browser_render_process_host.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -452,7 +452,7 @@ void BrowserRenderProcessHost::AppendRendererCommandLine( // Now send any options from our own command line we want to propogate. const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess(); - PropogateBrowserCommandLineToRenderer(browser_command_line, command_line); + PropagateBrowserCommandLineToRenderer(browser_command_line, command_line); // Pass on the browser locale. const std::string locale = g_browser_process->GetApplicationLocale(); @@ -482,7 +482,7 @@ void BrowserRenderProcessHost::AppendRendererCommandLine( #endif } -void BrowserRenderProcessHost::PropogateBrowserCommandLineToRenderer( +void BrowserRenderProcessHost::PropagateBrowserCommandLineToRenderer( const CommandLine& browser_cmd, CommandLine* renderer_cmd) const { // Propagate the following switches to the renderer command line (along diff --git a/chrome/browser/renderer_host/browser_render_process_host.h b/chrome/browser/renderer_host/browser_render_process_host.h index 0fd51ea..8f5f123 100644 --- a/chrome/browser/renderer_host/browser_render_process_host.h +++ b/chrome/browser/renderer_host/browser_render_process_host.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -132,7 +132,7 @@ class BrowserRenderProcessHost : public RenderProcessHost, // Copies applicable command line switches from the given |browser_cmd| line // flags to the output |renderer_cmd| line flags. Not all switches will be // copied over. - void PropogateBrowserCommandLineToRenderer(const CommandLine& browser_cmd, + void PropagateBrowserCommandLineToRenderer(const CommandLine& browser_cmd, CommandLine* renderer_cmd) const; // Callers can reduce the RenderProcess' priority. |