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

Unified Diff: content/plugin/webplugin_proxy.cc

Issue 23830007: Support byte range requests when routing resource requests directly through the browser process. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 3 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/plugin/webplugin_proxy.cc
===================================================================
--- content/plugin/webplugin_proxy.cc (revision 223347)
+++ content/plugin/webplugin_proxy.cc (working copy)
@@ -620,6 +620,14 @@
route_id_, url, range_info, range_request_id));
}
+void WebPluginProxy::DidStartLoading() {
+ Send(new PluginHostMsg_DidStartLoading(route_id_));
+}
+
+void WebPluginProxy::DidStopLoading() {
+ Send(new PluginHostMsg_DidStopLoading(route_id_));
+}
+
void WebPluginProxy::SetDeferResourceLoading(unsigned long resource_id,
bool defer) {
Send(new PluginHostMsg_DeferResourceLoading(route_id_, resource_id, defer));

Powered by Google App Engine
This is Rietveld 408576698