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

Delta Between Two Patch Sets: src/plugin/PluginSelftest.h

Issue 11013110: Cleanup (Closed)
Left Patch Set: More refactoring. Removing main thread, tab counting. Implementing SetPref and GetPref. Addressing … Created July 9, 2013, 12:59 p.m.
Right Patch Set: More beautification and addressing comments Created July 29, 2013, 12:13 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/plugin/PluginIniFileW.cpp ('k') | src/plugin/PluginSettings.h » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 #ifndef _PLUGIN_SELFTEST_H_
2 #define _PLUGIN_SELFTEST_H_
3
4
5 #if (defined ENABLE_DEBUG_SELFTEST)
6
7 class CPluginSelftest
8 {
9
10 private:
11
12 static CComAutoCriticalSection s_criticalSectionLocal;
13
14 static bool s_isSupported;
15
16 // Private constructor used by the singleton pattern
17 CPluginSelftest();
18
19 public:
20
21 ~CPluginSelftest();
22
23 static void AddText(const CStringA& text);
24 static void Clear();
25 static bool Send();
26 static bool IsFileTooLarge();
27
28 static void SetSupported(bool isSupported=true);
29 };
30
31 #endif // ENABLE_DEBUG_SELFTEST
32
33 #endif // _PLUGIN_SELFTEST_H_
LEFTRIGHT

Powered by Google App Engine
This is Rietveld