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

Unified Diff: installer/src/installer-lib/process.cpp

Issue 5219280069066752: Issue #1186 - Change names that appear in the custom action (Closed)
Patch Set: Created Oct. 15, 2014, 3:29 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/process.h ('k') | installer/src/installer-lib/session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: installer/src/installer-lib/process.cpp
===================================================================
--- a/installer/src/installer-lib/process.cpp
+++ b/installer/src/installer-lib/process.cpp
@@ -208,7 +208,7 @@
} ;
//-------------------------------------------------------
-// Process_Closer
+// ProcessCloser
//-------------------------------------------------------
/**
* Shut down all the processes in the pid_list.
@@ -227,12 +227,12 @@
* - MSDN [WM_QUERYENDSESSION message](http://msdn.microsoft.com/en-us/library/windows/desktop/aa376890%28v=vs.85%29.aspx)
* - MSDN [WM_ENDSESSION message](http://msdn.microsoft.com/en-us/library/windows/desktop/aa376889%28v=vs.85%29.aspx)
*/
-bool Process_Closer::shut_down()
+bool ProcessCloser::shutDown()
{
/*
* If we're not running, we don't need to shut down.
*/
- if ( ! is_running() )
+ if ( ! IsRunning() )
{
return true ;
}
@@ -303,7 +303,7 @@
{
std::this_thread::sleep_for( std::chrono::milliseconds( 100 ) ) ;
refresh() ;
- if ( ! is_running() )
+ if ( ! IsRunning() )
{
return true ;
}
« no previous file with comments | « installer/src/installer-lib/process.h ('k') | installer/src/installer-lib/session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld