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

Unified Diff: chrome/renderer/render_thread.h

Issue 28090: Keeping track of whether WebKit is in the callstack using RenderThread doesn'... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 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: chrome/renderer/render_thread.h
===================================================================
--- chrome/renderer/render_thread.h (revision 10288)
+++ chrome/renderer/render_thread.h (working copy)
@@ -31,9 +31,6 @@
virtual bool Send(IPC::Message* msg) = 0;
- // True if currently sending a message.
- virtual bool InSend() const = 0;
-
// Called to add or remove a listener for a particular message routing ID.
// These methods normally get delegated to a MessageRouter.
virtual void AddRoute(int32 routing_id, IPC::Channel::Listener* listener) = 0;
@@ -70,10 +67,6 @@
return ChildThread::Send(msg);
}
- virtual bool InSend() const {
- return ChildThread::InSend();
- }
-
virtual void AddRoute(int32 routing_id, IPC::Channel::Listener* listener) {
return ChildThread::AddRoute(routing_id, listener);
}

Powered by Google App Engine
This is Rietveld 408576698