Take two at splitting result codes between content and chrome.

content/common/result_codes.h contains only the codes defined in content. chrome/common/chrome_result_codes.h contains the codes defined in chrome and also includes (for convenience) the content header.

[email protected]
BUG=76699
TEST=everything compiles

Review URL: http://codereview.chromium.org/7397004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93082 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/extensions/extension_function.cc b/chrome/browser/extensions/extension_function.cc
index 5b814fd..0374dd06 100644
--- a/chrome/browser/extensions/extension_function.cc
+++ b/chrome/browser/extensions/extension_function.cc
@@ -112,7 +112,8 @@
     NOTREACHED();
     UserMetrics::RecordAction(UserMetricsAction("BadMessageTerminate_EFD"));
     if (process)
-      base::KillProcess(process, ResultCodes::KILLED_BAD_MESSAGE, false);
+      base::KillProcess(process, content::RESULT_CODE_KILLED_BAD_MESSAGE,
+                        false);
   }
 }
 UIThreadExtensionFunction::UIThreadExtensionFunction()