summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-10 18:54:56 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-10 18:54:56 +0000
commit5c13b4a8978c92e8667d2e47914f9eb5e22af43c (patch)
treebd78289674bda3dc066a70a28ef8fd9a73b09697 /ppapi
parentd19a6f5bf97fbebf63f605cedbd7b918b268c7bc (diff)
downloadchromium_src-5c13b4a8978c92e8667d2e47914f9eb5e22af43c.zip
chromium_src-5c13b4a8978c92e8667d2e47914f9eb5e22af43c.tar.gz
chromium_src-5c13b4a8978c92e8667d2e47914f9eb5e22af43c.tar.bz2
Remove unused function.
BUG=None TEST=None TBR=brettw git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65685 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r--ppapi/proxy/ppb_url_loader_proxy.cc16
1 files changed, 0 insertions, 16 deletions
diff --git a/ppapi/proxy/ppb_url_loader_proxy.cc b/ppapi/proxy/ppb_url_loader_proxy.cc
index 74ca2a1..481ceb9 100644
--- a/ppapi/proxy/ppb_url_loader_proxy.cc
+++ b/ppapi/proxy/ppb_url_loader_proxy.cc
@@ -203,22 +203,6 @@ const PPB_URLLoader_Dev ppb_urlloader = {
// Renderer status updates -----------------------------------------------------
-// Called in the renderer when the byte counts have changed. We send a message
-// to the plugin to synchronize its counts so it can respond to status polls
-// from the plugin.
-void UpdateResourceLoadStatus(PP_Instance pp_instance,
- PP_Resource pp_resource,
- int64 bytes_sent,
- int64 total_bytes_to_be_sent,
- int64 bytes_received,
- int64 total_bytes_to_be_received) {
- Dispatcher* dispatcher = HostDispatcher::GetForInstance(pp_instance);
- dispatcher->Send(new PpapiMsg_PPBURLLoader_UpdateProgress(
- INTERFACE_ID_PPB_URL_LOADER, pp_resource,
- bytes_sent, total_bytes_to_be_sent,
- bytes_received, total_bytes_to_be_received));
-}
-
// Data associated with callbacks for ReadResponseBody.
struct ReadCallbackInfo {
base::WeakPtr<PPB_URLLoader_Proxy> loader;