| Index: ceee/ie/plugin/scripting/script_host.cc
|
| diff --git a/ceee/ie/plugin/scripting/script_host.cc b/ceee/ie/plugin/scripting/script_host.cc
|
| index e2faf4263070ae2beaf35973f92c15f43bbae99d..15a57eb9c07a897018ead399ef06ecde9c1300c2 100644
|
| --- a/ceee/ie/plugin/scripting/script_host.cc
|
| +++ b/ceee/ie/plugin/scripting/script_host.cc
|
| @@ -13,8 +13,11 @@
|
|
|
| #include "base/logging.h"
|
| #include "base/string_util.h"
|
| +#include "base/stringize_macros.h"
|
| #include "ceee/common/com_utils.h"
|
|
|
| +#include "version.h" // NOLINT
|
| +
|
| #ifndef CMDID_SCRIPTSITE_URL
|
|
|
| // These are documented in MSDN, but not declared in the platform SDK.
|
| @@ -523,7 +526,7 @@ STDMETHODIMP ScriptHost::OnScriptErrorDebug(IActiveScriptErrorDebug* err,
|
| // TODO(ericdingle@chromium.org): internationalization
|
| int ret = ::MessageBox(
|
| NULL, L"A script error occured. Do you want to debug?",
|
| - L"Google Chrome Extensions Execution Environment",
|
| + TO_L_STRING(CEEE_PRODUCT_FULLNAME_STRING),
|
| MB_ICONERROR | MB_SETFOREGROUND | MB_TASKMODAL | MB_YESNO);
|
| *enter_debugger = (ret == IDYES);
|
| *call_on_script_err_when_continuing = FALSE;
|
|
|