Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: ceee/ie/plugin/scripting/script_host.cc

Issue 5360002: Use BRANDING for IE CEEE. Simplify chrome_dll_version handling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove spurious '33' from .gyp file. Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ceee/ie/plugin/bho/browser_helper_object.h ('k') | ceee/ie/plugin/scripting/scripting.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « ceee/ie/plugin/bho/browser_helper_object.h ('k') | ceee/ie/plugin/scripting/scripting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698