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

Unified Diff: Tools/DumpRenderTree/TestNetscapePlugIn/Tests/InvokeDestroysPluginWithinNPP_New.cpp

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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
Index: Tools/DumpRenderTree/TestNetscapePlugIn/Tests/InvokeDestroysPluginWithinNPP_New.cpp
diff --git a/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/InvokeDestroysPluginWithinNPP_New.cpp b/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/InvokeDestroysPluginWithinNPP_New.cpp
index 0e2dbdce716c7f40b85cd757f7be9c92ffb34a77..a9a9b8fa08cf5d46feee3e8fa39c727ac22a0586 100644
--- a/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/InvokeDestroysPluginWithinNPP_New.cpp
+++ b/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/InvokeDestroysPluginWithinNPP_New.cpp
@@ -49,14 +49,14 @@ NPError InvokeDestroysPluginWithinNPP_New::NPP_New(NPMIMEType pluginType, uint16
{
// Give the WebProcess enough time to be deadlocked waiting for the PluginProcess if things aren't working correctly.
usleep(15000);
-
+
NPObject* windowObject = 0;
if (NPN_GetValue(NPNVWindowNPObject, &windowObject) != NPERR_NO_ERROR)
return NPERR_GENERIC_ERROR;
-
+
if (!windowObject)
return NPERR_GENERIC_ERROR;
-
+
NPVariant result;
if (!NPN_Invoke(windowObject, NPN_GetStringIdentifier("removePluginElement"), 0, 0, &result))
return NPERR_GENERIC_ERROR;

Powered by Google App Engine
This is Rietveld 408576698