summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-15 20:19:27 +0000
committerdpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-15 20:19:27 +0000
commit56ce13e0010b4e56c93e8c105b183006dac2c562 (patch)
tree788ca100a4ceaa26512ac5e78caaf7d19af96d53
parent785c9672b5f4e423487147904930110dae0049d9 (diff)
downloadchromium_src-56ce13e0010b4e56c93e8c105b183006dac2c562.zip
chromium_src-56ce13e0010b4e56c93e8c105b183006dac2c562.tar.gz
chromium_src-56ce13e0010b4e56c93e8c105b183006dac2c562.tar.bz2
Build fix ... missed a file.
TBR=jam@chromium.org BUG= TEST= Review URL: http://codereview.chromium.org/7395006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92731 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/app/client_util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/app/client_util.cc b/chrome/app/client_util.cc
index dc6ddd0..ed6ad44 100644
--- a/chrome/app/client_util.cc
+++ b/chrome/app/client_util.cc
@@ -249,7 +249,7 @@ int MainDllLoader::Launch(HINSTANCE instance,
DLL_MAIN entry_point =
reinterpret_cast<DLL_MAIN>(::GetProcAddress(dll_, "ChromeMain"));
if (!entry_point)
- return content::RESULT_CODE_BAD_PROCESS_TYPE;
+ return chrome::RESULT_CODE_BAD_PROCESS_TYPE;
int rc = entry_point(instance, sbox_info, ::GetCommandLineW());
return OnBeforeExit(rc, file);
@@ -287,7 +287,7 @@ class ChromeDllLoader : public MainDllLoader {
// NORMAL_EXIT_CANCEL is used for experiments when the user cancels
// so we need to reset the did_run signal so omaha does not count
// this run as active usage.
- if (content::RESULT_CODE_NORMAL_EXIT_CANCEL == return_code) {
+ if (chrome::RESULT_CODE_NORMAL_EXIT_CANCEL == return_code) {
ClearDidRun(dll_path);
}
return return_code;