diff options
author | maruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-10 12:54:04 +0000 |
---|---|---|
committer | maruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-10 12:54:04 +0000 |
commit | f09c718082535c0de7f066cb63f95809070f35a6 (patch) | |
tree | 0c7bbd37cccef8748b8c6e1768d2d95f7989a1a0 /chrome/plugin/npobject_proxy.cc | |
parent | 15567be3dd3dacb0abae800ede436eac8123482c (diff) | |
download | chromium_src-f09c718082535c0de7f066cb63f95809070f35a6.zip chromium_src-f09c718082535c0de7f066cb63f95809070f35a6.tar.gz chromium_src-f09c718082535c0de7f066cb63f95809070f35a6.tar.bz2 |
NO CODE CHANGE.
Fix files with lines > 80 cols. Part 2.
Review URL: http://codereview.chromium.org/40226
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11326 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin/npobject_proxy.cc')
-rw-r--r-- | chrome/plugin/npobject_proxy.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/plugin/npobject_proxy.cc b/chrome/plugin/npobject_proxy.cc index 0af1f32..019b1b2 100644 --- a/chrome/plugin/npobject_proxy.cc +++ b/chrome/plugin/npobject_proxy.cc @@ -117,7 +117,8 @@ bool NPObjectProxy::NPHasMethod(NPObject *obj, NPIdentifier_Param name_param; CreateNPIdentifierParam(name, &name_param); - proxy->Send(new NPObjectMsg_HasMethod(proxy->route_id(), name_param, &result)); + proxy->Send(new NPObjectMsg_HasMethod(proxy->route_id(), name_param, + &result)); return result; } @@ -151,7 +152,8 @@ bool NPObjectProxy::NPInvokePrivate(NPP npp, bool result = false; NPIdentifier_Param name_param; if (is_default) { - // The data won't actually get used, but set it so we don't send random data. + // The data won't actually get used, but set it so we don't send random + // data. name_param.identifier = NULL; } else { CreateNPIdentifierParam(name, &name_param); @@ -397,4 +399,3 @@ void NPObjectProxy::NPNSetException(NPObject *obj, // Send may delete proxy. proxy = NULL; } - |