diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-17 18:43:33 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-17 18:43:33 +0000 |
commit | f174efdeef740d594124f820abb18ed1185cc57d (patch) | |
tree | eaff8f7f18edb072d1ef2c780d5b74e03b90dc4a /content/browser/utility_process_host.cc | |
parent | c63cedf228f9390647cafed05b64d0fc1fdf3e54 (diff) | |
download | chromium_src-f174efdeef740d594124f820abb18ed1185cc57d.zip chromium_src-f174efdeef740d594124f820abb18ed1185cc57d.tar.gz chromium_src-f174efdeef740d594124f820abb18ed1185cc57d.tar.bz2 |
Group BrowserChildProcesshost methods that will be part of the interface together, and make sure they're all CamelCase.
BUG=98716
Review URL: https://chromiumcodereview.appspot.com/9228012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117926 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/utility_process_host.cc')
-rw-r--r-- | content/browser/utility_process_host.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/utility_process_host.cc b/content/browser/utility_process_host.cc index 097cb93..68db20a 100644 --- a/content/browser/utility_process_host.cc +++ b/content/browser/utility_process_host.cc @@ -87,7 +87,7 @@ bool UtilityProcessHost::StartProcess() { return true; // Name must be set or metrics_service will crash in any test which // launches a UtilityProcessHost. - set_name(ASCIIToUTF16("utility process")); + SetName(ASCIIToUTF16("utility process")); std::string channel_id = child_process_host()->CreateChannel(); if (channel_id.empty()) |