diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-02 14:37:07 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-02 14:37:07 +0000 |
commit | 6a0dc7af6e4f2e1f5e56bb9646057e3c34eb2d31 (patch) | |
tree | a2a5a97bbd63c3b5da0324c0b710f59839954f11 /content/browser/plugin_loader_posix.h | |
parent | 10f10bab3e2ad38e5e5ac723d9b20dfcd7ef883c (diff) | |
download | chromium_src-6a0dc7af6e4f2e1f5e56bb9646057e3c34eb2d31.zip chromium_src-6a0dc7af6e4f2e1f5e56bb9646057e3c34eb2d31.tar.gz chromium_src-6a0dc7af6e4f2e1f5e56bb9646057e3c34eb2d31.tar.bz2 |
[Linux] Load plugins out-of-process.
This also fixes a bug in PluginLoaderPosix where if the last N plugins in the
canonical list crash, the callbacks are never run.
BUG=17863
TEST=On Linux, plugins work as before.
Originally Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=106962
Reverted: http://src.chromium.org/viewvc/chrome?view=rev&revision=106977
Review URL: http://codereview.chromium.org/8372015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108286 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/plugin_loader_posix.h')
-rw-r--r-- | content/browser/plugin_loader_posix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/plugin_loader_posix.h b/content/browser/plugin_loader_posix.h index 97fe8bb..0651450 100644 --- a/content/browser/plugin_loader_posix.h +++ b/content/browser/plugin_loader_posix.h @@ -87,7 +87,7 @@ class CONTENT_EXPORT PluginLoaderPosix : public UtilityProcessHost::Client, // Runs all the registered callbacks on each's target loop if the condition // for ending the load process is done (i.e. the |next_load_index_| is outside // the ranage of the |canonical_list_|). - void RunPendingCallbacks(); + bool MaybeRunPendingCallbacks(); // The process host for which this is a client. UtilityProcessHost* process_host_; |