summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/instance.cc
diff options
context:
space:
mode:
authordmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-28 15:18:32 +0000
committerdmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-28 15:18:32 +0000
commitdf50bde2da7bba014e1e3636d84e3ffea8fadcb2 (patch)
treea059ff33f0af2d56aa3f89194f53d6944ff96381 /ppapi/cpp/instance.cc
parent7079fb791a86a4ea8eca2350e40602bdecb62efc (diff)
downloadchromium_src-df50bde2da7bba014e1e3636d84e3ffea8fadcb2.zip
chromium_src-df50bde2da7bba014e1e3636d84e3ffea8fadcb2.tar.gz
chromium_src-df50bde2da7bba014e1e3636d84e3ffea8fadcb2.tar.bz2
Change a parameter name from message_data to message based on a review comment from http://codereview.chromium.org/6716005/.
BUG=None TEST=ppapi/tests/test_post_message.cc Review URL: http://codereview.chromium.org/6748006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79559 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/instance.cc')
-rw-r--r--ppapi/cpp/instance.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/cpp/instance.cc b/ppapi/cpp/instance.cc
index 025741f..7717ad3 100644
--- a/ppapi/cpp/instance.cc
+++ b/ppapi/cpp/instance.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
@@ -66,7 +66,7 @@ bool Instance::HandleInputEvent(const PP_InputEvent& /*event*/) {
return false;
}
-void Instance::HandleMessage(const Var& /*message_data*/) {
+void Instance::HandleMessage(const Var& /*message*/) {
return;
}