From b547fd44ca39e90e6416da8a5ffc040fa9d2446c Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Thu, 23 Apr 2009 23:16:27 +0000 Subject: Allow Flash (and other plugins) to be installed without restarting the browser. This works by monitoring the MozillaPlugins registry key and reloading the plugin list afterwards. Note: I'll commit the WebKit change separately, but putting it in this change right now so everything can be reviewed together. BUG=10574 Review URL: http://codereview.chromium.org/88020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14377 0039d316-1c4b-4281-b951-d872f2087c98 --- base/registry.h | 1 + 1 file changed, 1 insertion(+) (limited to 'base/registry.h') diff --git a/base/registry.h b/base/registry.h index a2f6fd8..757e409 100644 --- a/base/registry.h +++ b/base/registry.h @@ -88,6 +88,7 @@ class RegKey { bool StopWatching(); inline bool IsWatching() const { return watch_event_ != 0; } + HANDLE watch_event() const { return watch_event_; } HKEY Handle() const { return key_; } private: -- cgit v1.1