Index: content/public/test/nested_message_pump_android.cc |
diff --git a/content/public/test/nested_message_pump_android.cc b/content/public/test/nested_message_pump_android.cc |
index c3adb2cda694f4044e11938bb36dc0e545d2dcd7..4745c5384cf8d3f387620c844b6b6a57593fa0cf 100644 |
--- a/content/public/test/nested_message_pump_android.cc |
+++ b/content/public/test/nested_message_pump_android.cc |
@@ -123,8 +123,6 @@ void NestedMessagePumpAndroid::Start( |
DCHECK(env); |
g_message_handler_obj.Get().Reset( |
Java_NestedSystemMessageHandler_create(env)); |
- |
- base::MessagePumpForUI::Start(delegate); |
} |
void NestedMessagePumpAndroid::Quit() { |
@@ -133,7 +131,6 @@ void NestedMessagePumpAndroid::Quit() { |
state_->waitable_event.Signal(); |
return; |
} |
- base::MessagePumpForUI::Quit(); |
} |
void NestedMessagePumpAndroid::ScheduleWork() { |
@@ -141,8 +138,6 @@ void NestedMessagePumpAndroid::ScheduleWork() { |
state_->waitable_event.Signal(); |
return; |
} |
- |
- base::MessagePumpForUI::ScheduleWork(); |
} |
void NestedMessagePumpAndroid::ScheduleDelayedWork( |
@@ -154,8 +149,6 @@ void NestedMessagePumpAndroid::ScheduleDelayedWork( |
state_->delayed_work_time = delayed_work_time; |
return; |
} |
- |
- base::MessagePumpForUI::ScheduleDelayedWork(delayed_work_time); |
} |
// static |