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

Unified Diff: chrome/browser/browser_process_impl.cc

Issue 523463003: Manual fixups in chrome/ for scoped_refptr operator T* removal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process_impl.cc
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index 701fab0a53c385e64054bceb846b64cbd043d386..2f613d1a90a93d85eb213c2adb77fb81dbc3b03a 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -475,7 +475,7 @@ void BrowserProcessImpl::EndSession() {
profile->SetExitType(Profile::EXIT_SESSION_ENDED);
if (!use_broken_synchronization)
- rundown_counter->Post(profile->GetIOTaskRunner());
+ rundown_counter->Post(profile->GetIOTaskRunner().get());
}
// Tell the metrics service it was cleanly shutdown.
@@ -505,7 +505,7 @@ void BrowserProcessImpl::EndSession() {
#if defined(USE_X11) || defined(OS_WIN)
if (use_broken_synchronization) {
rundown_counter->Post(
- BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE));
+ BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE).get());
}
// Do a best-effort wait on the successful countdown of rundown tasks. Note
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698