summaryrefslogtreecommitdiffstats
path: root/content/browser
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser')
-rw-r--r--content/browser/browser_main.cc3
-rw-r--r--content/browser/browser_main.h6
2 files changed, 6 insertions, 3 deletions
diff --git a/content/browser/browser_main.cc b/content/browser/browser_main.cc
index e95aa7e..b2ba07d 100644
--- a/content/browser/browser_main.cc
+++ b/content/browser/browser_main.cc
@@ -167,9 +167,6 @@ BrowserMainParts::BrowserMainParts(const MainFunctionParams& parameters)
}
BrowserMainParts::~BrowserMainParts() {
-#if defined(OS_WIN)
- OleUninitialize();
-#endif
}
void BrowserMainParts::EarlyInitialization() {
diff --git a/content/browser/browser_main.h b/content/browser/browser_main.h
index f45c72b..141fe1f 100644
--- a/content/browser/browser_main.h
+++ b/content/browser/browser_main.h
@@ -125,6 +125,12 @@ class CONTENT_EXPORT BrowserMainParts {
DISALLOW_COPY_AND_ASSIGN(BrowserMainParts);
};
+// Perform platform-specific work that needs to be done after the main event
+// loop has ended. The embedder must be sure to call this.
+// TODO(jam): change this so that content calls it so that we don't depend on
+// the embedder.
+void DidEndMainMessageLoop();
+
} // namespace content
#endif // CONTENT_BROWSER_BROWSER_MAIN_H_