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

Unified Diff: src/plugin/PluginMutex.h

Issue 5750789393874944: [IE] First round of ATL removal (Closed)
Patch Set: Created June 20, 2014, 9:22 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: src/plugin/PluginMutex.h
===================================================================
--- a/src/plugin/PluginMutex.h
+++ b/src/plugin/PluginMutex.h
@@ -10,11 +10,11 @@
HANDLE m_hMutex;
bool m_isLocked;
int m_errorSubidBase;
- CString m_name;
+ std::wstring mutex_name;
sergei 2014/07/08 11:58:34 in `m_someVar` "m" means "member", since we are al
Eric 2014/07/08 17:46:37 The "m_" prefix (and the "s_" also) are carryovers
public:
- CPluginMutex(const CString& name, int errorSubidBase);
+ CPluginMutex(const std::wstring & name, int errorSubidBase);
~CPluginMutex();
bool IsLocked() const;

Powered by Google App Engine
This is Rietveld