Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4349)

Unified Diff: chrome/plugin/npobject_proxy.cc

Issue 40226: Fix files with lines > 80 cols. Part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/installer/util/shell_util.cc ('k') | chrome/plugin/npobject_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/plugin/npobject_proxy.cc
===================================================================
--- chrome/plugin/npobject_proxy.cc (revision 11111)
+++ chrome/plugin/npobject_proxy.cc (working copy)
@@ -117,7 +117,8 @@
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 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 @@
// Send may delete proxy.
proxy = NULL;
}
-
« no previous file with comments | « chrome/installer/util/shell_util.cc ('k') | chrome/plugin/npobject_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698