summaryrefslogtreecommitdiffstats
path: root/chrome_frame/policy_settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/policy_settings.h')
-rw-r--r--chrome_frame/policy_settings.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/chrome_frame/policy_settings.h b/chrome_frame/policy_settings.h
index 28182bd..72e32d2 100644
--- a/chrome_frame/policy_settings.h
+++ b/chrome_frame/policy_settings.h
@@ -7,6 +7,7 @@
#include <string>
#include <vector>
+#include "base/singleton.h"
#include "base/basictypes.h"
@@ -21,12 +22,7 @@ class PolicySettings {
RENDER_IN_CHROME_FRAME,
};
- PolicySettings() : default_renderer_(RENDERER_NOT_SPECIFIED) {
- RefreshFromRegistry();
- }
-
- ~PolicySettings() {
- }
+ static PolicySettings* GetInstance();
RendererForUrl default_renderer() const {
return default_renderer_;
@@ -50,6 +46,13 @@ class PolicySettings {
static void ReadApplicationLocaleSetting(std::wstring* application_locale);
protected:
+ PolicySettings() : default_renderer_(RENDERER_NOT_SPECIFIED) {
+ RefreshFromRegistry();
+ }
+
+ ~PolicySettings() {
+ }
+
// Protected for now since the class is not thread safe.
void RefreshFromRegistry();
@@ -60,8 +63,9 @@ class PolicySettings {
std::wstring application_locale_;
private:
+ // This ensures no construction is possible outside of the class itself.
+ friend struct DefaultSingletonTraits<PolicySettings>;
DISALLOW_COPY_AND_ASSIGN(PolicySettings);
};
-
#endif // CHROME_FRAME_POLICY_SETTINGS_H_