diff options
author | Monroe Linden <monroe@lindenlab.com> | 2010-08-17 17:56:54 -0700 |
---|---|---|
committer | Monroe Linden <monroe@lindenlab.com> | 2010-08-17 17:56:54 -0700 |
commit | a2657be5782f20c3cbab542b5a3775d78e21cdfa (patch) | |
tree | 7527b34a8c88ef844c6e0a95b20af5666a7f0e86 /indra/test_apps | |
parent | 5ed8b55283e93a0487f3056789102a8dcdd7db3a (diff) |
Viewer side changes to support javascript window.close handling.
Diffstat (limited to 'indra/test_apps')
-rw-r--r-- | indra/test_apps/llplugintest/llmediaplugintest.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/test_apps/llplugintest/llmediaplugintest.cpp b/indra/test_apps/llplugintest/llmediaplugintest.cpp index 166905c37c..4e39f1ccd1 100644 --- a/indra/test_apps/llplugintest/llmediaplugintest.cpp +++ b/indra/test_apps/llplugintest/llmediaplugintest.cpp @@ -2213,6 +2213,10 @@ void LLMediaPluginTest::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent e case MEDIA_EVENT_PLUGIN_FAILED_LAUNCH: std::cerr << "Media event: MEDIA_EVENT_PLUGIN_FAILED_LAUNCH" << std::endl; break; + + case MEDIA_EVENT_CLOSE_REQUEST: + std::cerr << "Media event: MEDIA_EVENT_CLOSE_REQUEST" << std::endl; + break; } } |