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

Unified Diff: content/public/browser/browser_shutdown.h

Issue 8477004: Have content/ create and destroy its own threads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix official build, avoid DCHECK in official Linux/ChromeOS builds. Created 9 years, 1 month 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/public/browser/browser_main_parts.h ('k') | content/public/browser/browser_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/browser_shutdown.h
diff --git a/content/public/browser/browser_shutdown.h b/content/public/browser/browser_shutdown.h
new file mode 100644
index 0000000000000000000000000000000000000000..72a4ce096ebff6adf340da06325ea7187e093a40
--- /dev/null
+++ b/content/public/browser/browser_shutdown.h
@@ -0,0 +1,32 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_BROWSER_SHUTDOWN_H_
+#define CONTENT_PUBLIC_BROWSER_BROWSER_SHUTDOWN_H_
+#pragma once
+
+#include "content/common/content_export.h"
+
+namespace content {
+
+// This can be used for as-fast-as-possible shutdown, in cases where
+// time for shutdown is limited and we just need to write out as much
+// data as possible before our time runs out.
+//
+// This causes the shutdown sequence embodied by
+// BrowserMainParts::PostMainMessageLoopRun through
+// BrowserMainParts::PostDestroyThreads to occur, i.e. we pretend the
+// message loop finished, all threads are stopped in sequence and
+// PreStopThread/PostStopThread gets called, and at least,
+// PostDestroyThreads is called.
+//
+// As this violates the normal order of shutdown, likely leaving the
+// process in a bad state, the last thing this function does is
+// terminate the process (right after calling
+// BrowserMainParts::PostDestroyThreads).
+CONTENT_EXPORT void ImmediateShutdownAndExitProcess();
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_BROWSER_SHUTDOWN_H_
« no previous file with comments | « content/public/browser/browser_main_parts.h ('k') | content/public/browser/browser_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698