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

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

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 | « no previous file | installer/src/installer-lib/DLL.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: installer/src/installer-lib/DLL.h
===================================================================
--- a/installer/src/installer-lib/DLL.h
+++ b/installer/src/installer-lib/DLL.h
@@ -2,8 +2,8 @@
* \file DLL.h The DLL as a Windows system module.
*/
-#ifndef DLL_H
-#define DLL_H
+#ifndef DLL_H
+#define DLL_H
#include <memory>
#include <string>
@@ -21,7 +21,7 @@
/**
* Accessor function for the singleton.
*/
- static DllModule & module();
+ static DllModule & Module();
/**
* Hook function to call on DLL attach.
@@ -36,7 +36,7 @@
/**
* Textual name of the DLL as an OS module.
*/
- std::wstring name();
+ std::wstring Name();
private:
/**
@@ -59,7 +59,7 @@
*
* Implemented as a smart pointer for deferred evaluation of the system call to get the module name.
*/
- std::shared_ptr< std::wstring > _name;
+ std::shared_ptr< std::wstring > name;
};
#endif
« no previous file with comments | « no previous file | installer/src/installer-lib/DLL.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld