Index: chrome/installer/util/google_chrome_distribution.cc |
diff --git a/chrome/installer/util/google_chrome_distribution.cc b/chrome/installer/util/google_chrome_distribution.cc |
index c62cf98bf340b624540efd3d318c83896e0d61d6..27d2a7c118bf6cea0c2791d7d3d4920cb789cc53 100644 |
--- a/chrome/installer/util/google_chrome_distribution.cc |
+++ b/chrome/installer/util/google_chrome_distribution.cc |
@@ -24,6 +24,7 @@ |
#include "base/win/registry.h" |
#include "base/win/windows_version.h" |
#include "chrome/common/attrition_experiments.h" |
+#include "chrome/common/chrome_result_codes.h" |
#include "chrome/common/chrome_switches.h" |
#include "chrome/common/pref_names.h" |
#include "chrome/installer/util/channel_info.h" |
@@ -36,7 +37,6 @@ |
#include "chrome/installer/util/util_constants.h" |
#include "chrome/installer/util/wmi.h" |
#include "content/common/json_value_serializer.h" |
-#include "content/common/result_codes.h" |
#include "installer_util_strings.h" // NOLINT |
@@ -776,13 +776,13 @@ void GoogleChromeDistribution::InactiveUserToastExperiment(int flavor, |
// The chrome process has exited, figure out what happened. |
const wchar_t* outcome = NULL; |
switch (exit_code) { |
- case ResultCodes::NORMAL_EXIT: |
+ case content::RESULT_CODE_NORMAL_EXIT: |
outcome = kToastExpTriesOkGroup; |
break; |
- case ResultCodes::NORMAL_EXIT_CANCEL: |
+ case chrome::RESULT_CODE_NORMAL_EXIT_CANCEL: |
outcome = kToastExpCancelGroup; |
break; |
- case ResultCodes::NORMAL_EXIT_EXP2: |
+ case chrome::RESULT_CODE_NORMAL_EXIT_EXP2: |
outcome = kToastExpUninstallGroup; |
break; |
default: |