diff options
author | dmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 15:18:32 +0000 |
---|---|---|
committer | dmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 15:18:32 +0000 |
commit | df50bde2da7bba014e1e3636d84e3ffea8fadcb2 (patch) | |
tree | a059ff33f0af2d56aa3f89194f53d6944ff96381 /ppapi/cpp | |
parent | 7079fb791a86a4ea8eca2350e40602bdecb62efc (diff) | |
download | chromium_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')
-rw-r--r-- | ppapi/cpp/instance.cc | 4 | ||||
-rw-r--r-- | ppapi/cpp/instance.h | 4 |
2 files changed, 4 insertions, 4 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; } diff --git a/ppapi/cpp/instance.h b/ppapi/cpp/instance.h index 69de79f..81d4176 100644 --- a/ppapi/cpp/instance.h +++ b/ppapi/cpp/instance.h @@ -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. @@ -102,7 +102,7 @@ class Instance { // separate C++ class. /** See PPP_Messaging.HandleMessage. */ - virtual void HandleMessage(const Var& message_data); + virtual void HandleMessage(const Var& message); /** See PPB_Messaging.PostMessage. */ void PostMessage(const Var& message); |