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

Unified Diff: installer/src/installer-lib/DLL.h

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/DLL.h
===================================================================
--- a/installer/src/installer-lib/DLL.h
+++ b/installer/src/installer-lib/DLL.h
@@ -15,23 +15,23 @@
* The choice to use a singleton reflects the design of the Windows API, which treats the module handle as a global for the DLL instance,
* only appearing during the calls that manage the lifetime of the DLL.
*/
-class DLL_Module
+class DllModule
{
public:
/**
* Accessor function for the singleton.
*/
- static DLL_Module & module();
+ static DllModule & module();
/**
* Hook function to call on DLL attach.
*/
- static void attach( HINSTANCE handle );
+ static void Attach( HINSTANCE handle );
/**
* Hook function to call on DLL detach.
*/
- static void detach();
+ static void Detach();
/**
* Textual name of the DLL as an OS module.
@@ -42,12 +42,12 @@
/**
* The singleton value.
*/
- static std::shared_ptr< DLL_Module > singleton;
+ static std::shared_ptr< DllModule > singleton;
/**
* Private constructor ensures use of accessor function only.
*/
- DLL_Module( HINSTANCE handle );
+ DllModule( HINSTANCE handle );
/**
* Windows handle for the instance of the DLL.

Powered by Google App Engine
This is Rietveld