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

Unified Diff: installer/src/installer-lib/test/test-installer-lib-sandbox.cpp

Issue 5992177905696768: Issue #1186 - Rename symbols defined in 'installer-lib' (Closed)
Patch Set: fixed issues; rebased; new fixes from rebase Created June 19, 2015, 4:09 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/test/process_test.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: installer/src/installer-lib/test/test-installer-lib-sandbox.cpp
===================================================================
--- a/installer/src/installer-lib/test/test-installer-lib-sandbox.cpp
+++ b/installer/src/installer-lib/test/test-installer-lib-sandbox.cpp
@@ -45,7 +45,7 @@
{
session.Log( "log_all_window_handles" ) ;
log_single_window_handle lp( session ) ;
- enumerate_windows( lp ) ;
+ EnumerateWindows( lp ) ;
}
//-------------------------------------------------------
@@ -65,8 +65,8 @@
bool operator()( HWND window )
{
- DWORD pid = creator_process( window ) ;
- if ( pc.contains( pid ) )
+ DWORD pid = CreatorProcess( window ) ;
+ if ( pc.Contains( pid ) )
{
std::stringstream s ;
s << "Window handle 0x" << std::hex << window ;
@@ -83,7 +83,7 @@
ProcessSnapshot snapshot ;
ProcessCloser iec(snapshot, IE_names) ;
log_single_window_handle_only_if_IE lp( session, iec ) ;
- enumerate_windows( lp ) ;
+ EnumerateWindows( lp ) ;
}
//-------------------------------------------------------
@@ -95,7 +95,7 @@
const wchar_t * IE_names[] = { L"IExplore.exe", L"AdblockPlusEngine.exe" } ;
ProcessSnapshot snapshot ;
ProcessCloser iec( snapshot, IE_names) ;
- iec.iterate_our_windows( log_single_window_handle( session ) ) ;
+ iec.IterateOurWindows( log_single_window_handle( session ) ) ;
}
//-------------------------------------------------------
« no previous file with comments | « installer/src/installer-lib/test/process_test.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld