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

Side by Side Diff: installer/src/installer-lib/handle.h

Issue 5663180676136960: Make sure IE and Engine are actually being closed by custom action (Closed)
Patch Set: Use handle class for HMODULE. Add back a test for immersive case. Created June 26, 2014, 1:24 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | installer/src/installer-lib/process.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * \file handle.h The "install session" is the context for all custom installatio n behavior. 2 * \file handle.h The "install session" is the context for all custom installatio n behavior.
3 */ 3 */
4 4
5 #ifndef HANDLE_H 5 #ifndef HANDLE_H
6 #define HANDLE_H 6 #define HANDLE_H
7 7
8 #include "windows.h" 8 #include "windows.h"
9 #include "msi.h" 9 #include "msi.h"
10 10
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 /** 265 /**
266 * Expose the underlying handle type. 266 * Expose the underlying handle type.
267 */ 267 */
268 typedef T handle_type ; 268 typedef T handle_type ;
269 } ; 269 } ;
270 270
271 //------------------------------------------------------- 271 //-------------------------------------------------------
272 // Common instantiations of handle 272 // Common instantiations of handle
273 //------------------------------------------------------- 273 //-------------------------------------------------------
274 typedef handle< HANDLE, Disallow_Null, Windows_Generic_Destruction > Windows_Han dle ; 274 typedef handle< HANDLE, Disallow_Null, Windows_Generic_Destruction > Windows_Han dle ;
275 typedef handle< HMODULE, Disallow_Null, Windows_Generic_Destruction > Windows_Mo dule_Handle ;
275 276
276 #endif 277 #endif
OLDNEW
« no previous file with comments | « no previous file | installer/src/installer-lib/process.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld