summaryrefslogtreecommitdiff
path: root/indra/llplugin/llpluginprocessparent.h
diff options
context:
space:
mode:
authorCallum Prentice <callum@lindenlab.com>2010-03-12 14:34:25 -0800
committerCallum Prentice <callum@lindenlab.com>2010-03-12 14:34:25 -0800
commitd5e685306ce100a62db06a36dfef58f3beb22b7a (patch)
tree4edf13210302a08dd6da9f2bdf3f0218d9734c5a /indra/llplugin/llpluginprocessparent.h
parent6079a50186923cd764474e94d70da89074d0a7ab (diff)
(for B5) Fix for EXT-5823 "Include language in user-agent string" (implemented via JavaScript - not in ua string)
(for B5) Fix for EXT-5314 "Inworld Browser blanks out at credit card entry" Note: also includes an update to install.xml that points to a new version of LLQtWebKit that is required for these fixes
Diffstat (limited to 'indra/llplugin/llpluginprocessparent.h')
-rw-r--r--indra/llplugin/llpluginprocessparent.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/llplugin/llpluginprocessparent.h b/indra/llplugin/llpluginprocessparent.h
index 524cd9923f..23702814c8 100644
--- a/indra/llplugin/llpluginprocessparent.h
+++ b/indra/llplugin/llpluginprocessparent.h
@@ -59,7 +59,12 @@ public:
LLPluginProcessParent(LLPluginProcessParentOwner *owner);
~LLPluginProcessParent();
- void init(const std::string &launcher_filename, const std::string &plugin_filename, bool debug, const std::string &user_data_path);
+ void init(const std::string &launcher_filename,
+ const std::string &plugin_filename,
+ bool debug,
+ const std::string &user_data_path,
+ const std::string &language_code);
+
void idle(void);
// returns true if the plugin is on its way to steady state
@@ -144,6 +149,7 @@ private:
std::string mPluginFile;
std::string mUserDataPath;
+ std::string mLanguageCode;
LLPluginProcessParentOwner *mOwner;