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/plugin_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/plugin_process_host.cc')
-rw-r--r-- | content/browser/plugin_process_host.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/plugin_process_host.cc b/content/browser/plugin_process_host.cc index dcfe740..cd8fb88 100644 --- a/content/browser/plugin_process_host.cc +++ b/content/browser/plugin_process_host.cc @@ -166,7 +166,7 @@ PluginProcessHost::~PluginProcessHost() { bool PluginProcessHost::Init(const webkit::WebPluginInfo& info) { info_ = info; - set_name(info_.name); + SetName(info_.name); std::string channel_id = child_process_host()->CreateChannel(); if (channel_id.empty()) |