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 Jan. 4, 2015, 7 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
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 ;
}
@@ -302,8 +302,8 @@
for ( unsigned int j = 0 ; j < 50 ; ++ j )
{
std::this_thread::sleep_for( std::chrono::milliseconds( 100 ) ) ;
- refresh() ;
- if ( ! is_running() )
+ Refresh() ;
+ if ( ! IsRunning() )
{
return true ;
}

Powered by Google App Engine
This is Rietveld