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

Unified Diff: content/common/gpu/client/gpu_channel_host.cc

Issue 14335017: content: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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
Index: content/common/gpu/client/gpu_channel_host.cc
diff --git a/content/common/gpu/client/gpu_channel_host.cc b/content/common/gpu/client/gpu_channel_host.cc
index 6688f25f6331ad496b1e5de8f0317736824f7c09..91ff7a65b530debb67989de7db4e67b6b38da841 100644
--- a/content/common/gpu/client/gpu_channel_host.cc
+++ b/content/common/gpu/client/gpu_channel_host.cc
@@ -117,7 +117,7 @@ bool GpuChannelHost::Send(IPC::Message* message) {
base::ThreadRestrictions::ScopedAllowWait allow_wait;
return channel_->Send(message);
}
- } else if (MessageLoop::current()) {
+ } else if (base::MessageLoop::current()) {
return sync_filter_->Send(message);
}
« no previous file with comments | « content/common/fileapi/webblobregistry_impl.cc ('k') | content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698