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

Unified Diff: base/message_pump_libevent.h

Issue 10534169: base: Remove an unused member from MessagePumpLibevent::FileDescriptorWatcher (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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 | base/message_pump_libevent.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_pump_libevent.h
diff --git a/base/message_pump_libevent.h b/base/message_pump_libevent.h
index e477036b1127ce1078c7eabc5fffcb50f5848d26..957c5480b465f699d3e36a56e2eb7cdf4ec3e1ce 100644
--- a/base/message_pump_libevent.h
+++ b/base/message_pump_libevent.h
@@ -71,7 +71,7 @@ class BASE_EXPORT MessagePumpLibevent : public MessagePump {
// Called by MessagePumpLibevent, ownership of |e| is transferred to this
// object.
- void Init(event* e, bool is_persistent);
+ void Init(event* e);
// Used by MessagePumpLibevent to take ownership of event_.
event *ReleaseEvent();
@@ -84,7 +84,6 @@ class BASE_EXPORT MessagePumpLibevent : public MessagePump {
void OnFileCanReadWithoutBlocking(int fd, MessagePumpLibevent* pump);
void OnFileCanWriteWithoutBlocking(int fd, MessagePumpLibevent* pump);
- bool is_persistent_; // false if this event is one-shot.
event* event_;
MessagePumpLibevent* pump_;
Watcher* watcher_;
« no previous file with comments | « no previous file | base/message_pump_libevent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698