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

Unified Diff: content/browser/devtools/devtools_io_context.cc

Issue 2591963004: Transform RefCountedDeleteOnMessageLoop to RefCountedDeleteOnSequence. (Closed)
Patch Set: similarity Created 4 years 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/browser/devtools/devtools_io_context.h ('k') | content/browser/devtools/protocol/io_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/devtools_io_context.cc
diff --git a/content/browser/devtools/devtools_io_context.cc b/content/browser/devtools/devtools_io_context.cc
index 035655ad85c6e5c0d1e3ebdb007e63ced33b2ec2..2b18f033258a62c152d7b1dbbb26f18d8b48fefc 100644
--- a/content/browser/devtools/devtools_io_context.cc
+++ b/content/browser/devtools/devtools_io_context.cc
@@ -20,7 +20,7 @@ unsigned s_last_stream_handle = 0;
using Stream = DevToolsIOContext::Stream;
Stream::Stream()
- : base::RefCountedDeleteOnMessageLoop<Stream>(
+ : base::RefCountedDeleteOnSequence<Stream>(
BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE)),
handle_(base::UintToString(++s_last_stream_handle)),
had_errors_(false),
« no previous file with comments | « content/browser/devtools/devtools_io_context.h ('k') | content/browser/devtools/protocol/io_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698