Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: installer/src/installer-lib/test/custom-action-fail.cpp

Issue 29329510: Issue #1186 - Style conformity for names in installer tests (Closed)
Patch Set: Created Nov. 14, 2015, 5:55 p.m.
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
Download patch
« no previous file with comments | « installer/src/installer-lib/property.cpp ('k') | installer/src/installer-lib/test/database_test.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: installer/src/installer-lib/test/custom-action-fail.cpp
===================================================================
--- a/installer/src/installer-lib/test/custom-action-fail.cpp
+++ b/installer/src/installer-lib/test/custom-action-fail.cpp
@@ -1,5 +1,5 @@
/**
- * \file close_application.cpp
+ * \file custom-action-fail.cpp
*/
#include "session.h"
@@ -11,7 +11,7 @@
* A custom action that always and immediately fails.
* Use during testing to ensure that the installer terminates.
*
- * \param[in] session_handle
+ * \param[in] sessionHandle
* Windows installer session handle
*
* \return
@@ -21,9 +21,9 @@
* - MSDN [Custom Action Return Values](http://msdn.microsoft.com/en-us/library/aa368072%28v=vs.85%29.aspx)
*/
extern "C" UINT __stdcall
-fail(MSIHANDLE session_handle)
+fail(MSIHANDLE sessionHandle)
{
// Instantiate the session object in order to get begin/end log entries.
- ImmediateSession session(session_handle, "fail");
+ ImmediateSession session(sessionHandle, "fail");
return ERROR_INSTALL_FAILURE;
}
« no previous file with comments | « installer/src/installer-lib/property.cpp ('k') | installer/src/installer-lib/test/database_test.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld