diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-23 23:16:27 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-23 23:16:27 +0000 |
commit | b547fd44ca39e90e6416da8a5ffc040fa9d2446c (patch) | |
tree | e99a4dd4e1d05e0d8ceb2c1db2f8c45ba4b2bc2a /base/registry.h | |
parent | b2225f18acfce00b1a8a9f25a7ad2ef8450bb6a9 (diff) | |
download | chromium_src-b547fd44ca39e90e6416da8a5ffc040fa9d2446c.zip chromium_src-b547fd44ca39e90e6416da8a5ffc040fa9d2446c.tar.gz chromium_src-b547fd44ca39e90e6416da8a5ffc040fa9d2446c.tar.bz2 |
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
Diffstat (limited to 'base/registry.h')
-rw-r--r-- | base/registry.h | 1 |
1 files changed, 1 insertions, 0 deletions
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: |