Chromium Code Reviews

Unified Diff: chrome/plugin/npobject_util.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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « chrome/plugin/npobject_proxy.cc ('k') | chrome/plugin/plugin_channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/plugin/npobject_util.cc
===================================================================
--- chrome/plugin/npobject_util.cc (revision 11111)
+++ chrome/plugin/npobject_util.cc (working copy)
@@ -41,7 +41,8 @@
const NPVariant *args,
uint32_t argCount,
NPVariant *result) {
- return NPObjectProxy::NPInvokePrivate(npp, npobj, false, methodName, args, argCount, result);
+ return NPObjectProxy::NPInvokePrivate(npp, npobj, false, methodName, args,
+ argCount, result);
}
static bool NPN_InvokeDefaultPatch(NPP npp,
@@ -49,7 +50,8 @@
const NPVariant *args,
uint32_t argCount,
NPVariant *result) {
- return NPObjectProxy::NPInvokePrivate(npp, npobj, true, 0, args, argCount, result);
+ return NPObjectProxy::NPInvokePrivate(npp, npobj, true, 0, args, argCount,
+ result);
}
static bool NPN_HasPropertyPatch(NPP npp,
@@ -238,19 +240,23 @@
break;
case NPVARIANT_PARAM_OBJECT_ROUTING_ID:
result->type = NPVariantType_Object;
- result->value.objectValue = NPObjectProxy::Create(channel,
- param.npobject_routing_id,
- param.npobject_pointer,
- modal_dialog_event);
+ result->value.objectValue =
+ NPObjectProxy::Create(channel,
+ param.npobject_routing_id,
+ param.npobject_pointer,
+ modal_dialog_event);
break;
case NPVARIANT_PARAM_OBJECT_POINTER:
result->type = NPVariantType_Object;
- result->value.objectValue = static_cast<NPObject*>(param.npobject_pointer);
+ result->value.objectValue =
+ static_cast<NPObject*>(param.npobject_pointer);
NPN_RetainObject(result->value.objectValue);
break;
default:
NOTREACHED();
}
}
-#endif
-#endif
+
+#endif // defined(OS_WIN)
+
+#endif // defined(OS_WIN)
« no previous file with comments | « chrome/plugin/npobject_proxy.cc ('k') | chrome/plugin/plugin_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine