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

Side by Side Diff: src/plugin/PluginDebug.h

Issue 4895405913407488: Issue #1234 - remove CString from declarations representing domains. (Closed)
Patch Set: Created Aug. 7, 2014, 7:46 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 | « src/plugin/PluginClientBase.cpp ('k') | src/plugin/PluginDebug.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 #ifndef _PLUGIN_DEBUG_H_ 1 #ifndef _PLUGIN_DEBUG_H_
2 #define _PLUGIN_DEBUG_H_ 2 #define _PLUGIN_DEBUG_H_
3 3
4 4
5 class CPluginDebug 5 class CPluginDebug
6 { 6 {
7 7
8 public: 8 public:
9 9
10 #if (defined ENABLE_DEBUG_INFO) 10 #if (defined ENABLE_DEBUG_INFO)
11 static void Debug(const CString& error, DWORD dwProcessId=0, DWORD dwThreadId= 0); 11 static void Debug(const CString& error, DWORD dwProcessId=0, DWORD dwThreadId= 0);
12 static void DebugClear(); 12 static void DebugClear();
13 static void DebugError(const CString& error); 13 static void DebugError(const CString& error);
14 static void DebugErrorCode(DWORD errorCode, const CString& error, DWORD dwProc essId=0, DWORD dwThreadId=0); 14 static void DebugErrorCode(DWORD errorCode, const CString& error, DWORD dwProc essId=0, DWORD dwThreadId=0);
15 #endif 15 #endif
16 16
17 #if (defined ENABLE_DEBUG_RESULT) 17 #if (defined ENABLE_DEBUG_RESULT)
18 static void DebugResult(const CString& text); 18 static void DebugResult(const CString& text);
19 static void DebugResultDomain(const CString& domain); 19 static void DebugResultDomain(const CString& domain);
20 static void DebugResultBlocking(const CString& type, const CString& src, const CString& domain); 20 static void DebugResultBlocking(const CString& type, const CString& src, const std::wstring& domain);
21 static void DebugResultHiding(const CString& tag, const CString& id, const CSt ring& filter); 21 static void DebugResultHiding(const CString& tag, const CString& id, const CSt ring& filter);
22 static void DebugResultClear(); 22 static void DebugResultClear();
23 #endif 23 #endif
24 24
25 #if (defined ENABLE_DEBUG_RESULT_IGNORED) 25 #if (defined ENABLE_DEBUG_RESULT_IGNORED)
26 static void DebugResultIgnoring(const CString& type, const CString& src, const CString& domain); 26 static void DebugResultIgnoring(const CString& type, const CString& src, const std::wstring& domain);
27 #endif 27 #endif
28 }; 28 };
29 29
30 30
31 #endif // _PLUGIN_DEBUG_H_ 31 #endif // _PLUGIN_DEBUG_H_
OLDNEW
« no previous file with comments | « src/plugin/PluginClientBase.cpp ('k') | src/plugin/PluginDebug.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld