Index: content/browser/browser_main_loop.cc |
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc |
index 15006c424c1a5717d588e8f482fa170a99e963d0..045295094003cae7c80c290861cb5495070213dd 100644 |
--- a/content/browser/browser_main_loop.cc |
+++ b/content/browser/browser_main_loop.cc |
@@ -47,7 +47,6 @@ |
#if defined(OS_WIN) |
#include <windows.h> |
#include <commctrl.h> |
-#include <ole2.h> |
#include <shellapi.h> |
#include "content/browser/system_message_window_win.h" |
@@ -217,17 +216,11 @@ BrowserMainLoop::BrowserMainLoop(const content::MainFunctionParams& parameters) |
result_code_(content::RESULT_CODE_NORMAL_EXIT) { |
DCHECK(!g_current_browser_main_loop); |
g_current_browser_main_loop = this; |
-#if defined(OS_WIN) |
- OleInitialize(NULL); |
-#endif |
} |
BrowserMainLoop::~BrowserMainLoop() { |
DCHECK_EQ(this, g_current_browser_main_loop); |
g_current_browser_main_loop = NULL; |
-#if defined(OS_WIN) |
- OleUninitialize(); |
-#endif |
} |
void BrowserMainLoop::Init() { |