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

Unified Diff: content/browser/child_process_launcher.cc

Issue 7624052: Cleanup code used to diagnose and fix bug 81449. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | « base/threading/platform_thread_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/child_process_launcher.cc
===================================================================
--- content/browser/child_process_launcher.cc (revision 97282)
+++ content/browser/child_process_launcher.cc (working copy)
@@ -256,13 +256,6 @@
process_.SetProcessBackgrounded(background);
}
-// TODO(apatrick): Remove this ASAP. http://crbog.com/81449 shows that this is
-// called before later calling null. Disable optimization to try and get more
-// information about what happened here.
-#if defined(OS_WIN)
-#pragma optimize("", off)
-#endif
-
static void TerminateInternal(
#if defined(OS_POSIX) && !defined(OS_MACOSX)
bool zygote,
@@ -288,10 +281,6 @@
process.Close();
}
-#if defined(OS_WIN)
-#pragma optimize("", on)
-#endif
-
Client* client_;
BrowserThread::ID client_thread_id_;
base::Process process_;
« no previous file with comments | « base/threading/platform_thread_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698