diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-12 00:41:08 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-12 00:41:08 +0000 |
commit | 6fb8da6d97a3bbdb0df022ea201bf91aa36a001b (patch) | |
tree | 26d3b38ccb77f4fdb5dc2538c67e42703295bde5 /content/browser/ppapi_plugin_process_host.cc | |
parent | 5e93c47a282ed564e6a56af10f4097599fe41def (diff) | |
download | chromium_src-6fb8da6d97a3bbdb0df022ea201bf91aa36a001b.zip chromium_src-6fb8da6d97a3bbdb0df022ea201bf91aa36a001b.tar.gz chromium_src-6fb8da6d97a3bbdb0df022ea201bf91aa36a001b.tar.bz2 |
PPAPI: Remove threading options; it's always on
This also re-enables thread checking for the host side resource and var trackers. Before, checking was disabled everywhere.
BUG=159240,92909
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=186925
Reverted: https://src.chromium.org/viewvc/chrome?view=rev&revision=186939 due to build errors
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=187340
Review URL: https://chromiumcodereview.appspot.com/12378050
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@187427 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/ppapi_plugin_process_host.cc')
-rw-r--r-- | content/browser/ppapi_plugin_process_host.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/content/browser/ppapi_plugin_process_host.cc b/content/browser/ppapi_plugin_process_host.cc index a4dd416..64975c5 100644 --- a/content/browser/ppapi_plugin_process_host.cc +++ b/content/browser/ppapi_plugin_process_host.cc @@ -248,10 +248,9 @@ bool PpapiPluginProcessHost::Init(const PepperPluginInfo& info) { arraysize(kCommonForwardSwitches)); if (!is_broker_) { - // TODO(vtl): Stop passing flash args in the command line, on windows is + // TODO(vtl): Stop passing flash args in the command line, or windows is // going to explode. static const char* kPluginForwardSwitches[] = { - switches::kDisablePepperThreading, switches::kDisableSeccompFilterSandbox, #if defined(OS_MACOSX) switches::kEnableSandboxLogging, |