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

Unified Diff: content/browser/renderer_host/browser_render_process_host.cc

Issue 7397004: Take two at splitting result codes between content and chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix compile failure in uninstall.cc Created 9 years, 5 months 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 | « content/browser/handle_enumerator_win.cc ('k') | content/browser/worker_host/worker_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/browser_render_process_host.cc
diff --git a/content/browser/renderer_host/browser_render_process_host.cc b/content/browser/renderer_host/browser_render_process_host.cc
index 734571e9e04c53dde538eeef27573fcd249bbba7..eeb367b5e4442ffaf0fff72893107d6192ecbe80 100644
--- a/content/browser/renderer_host/browser_render_process_host.cc
+++ b/content/browser/renderer_host/browser_render_process_host.cc
@@ -441,7 +441,8 @@ void BrowserRenderProcessHost::ReceivedBadMessage() {
CHECK(false);
}
NOTREACHED();
- base::KillProcess(GetHandle(), ResultCodes::KILLED_BAD_MESSAGE, false);
+ base::KillProcess(GetHandle(), content::RESULT_CODE_KILLED_BAD_MESSAGE,
+ false);
}
void BrowserRenderProcessHost::WidgetRestored() {
« no previous file with comments | « content/browser/handle_enumerator_win.cc ('k') | content/browser/worker_host/worker_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698