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

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

Issue 5750789393874944: [IE] First round of ATL removal (Closed)
Patch Set: Created June 20, 2014, 9:22 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
OLDNEW
1 #ifndef _PLUGIN_SYSTEM_H_ 1 #ifndef _PLUGIN_SYSTEM_H_
2 #define _PLUGIN_SYSTEM_H_ 2 #define _PLUGIN_SYSTEM_H_
3 3
4 4
5 class CPluginSystem 5 class CPluginSystem
6 { 6 {
7 private: 7 private:
8 8
9 static CComAutoCriticalSection s_criticalSection; 9 static CComAutoCriticalSection s_criticalSection;
10 10
11 // Private constructor used by the singleton pattern 11 // Private constructor used by the singleton pattern
12 CPluginSystem(); 12 CPluginSystem();
13 13
14 public: 14 public:
15 static CPluginSystem* s_instance; 15 static CPluginSystem* s_instance;
16 16
17 static CPluginSystem* CPluginSystem::GetInstance(); 17 static CPluginSystem* CPluginSystem::GetInstance();
18 18
19 ~CPluginSystem(); 19 ~CPluginSystem();
20 20
21 CString GetBrowserLanguage() const; 21 std::wstring GetBrowserLanguage() const;
22 }; 22 };
23 23
24 #endif // _PLUGIN_SYSTEM_H_ 24 #endif // _PLUGIN_SYSTEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld