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

Unified Diff: ppapi/thunk/ppb_url_loader_api.h

Issue 14371021: Implementation of URLLoader using PluginResource/ResourceHost. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add DocumentLoader class to record document load events. Created 7 years, 7 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: ppapi/thunk/ppb_url_loader_api.h
diff --git a/ppapi/thunk/ppb_url_loader_api.h b/ppapi/thunk/ppb_url_loader_api.h
index 00d46902e21fac0ab3e843b753065970723847bb..df9b6aa0fe8f23228754b88ae42f197c5843ae90 100644
--- a/ppapi/thunk/ppb_url_loader_api.h
+++ b/ppapi/thunk/ppb_url_loader_api.h
@@ -49,14 +49,6 @@ class PPB_URLLoader_API {
virtual void GrantUniversalAccess() = 0;
virtual void RegisterStatusCallback(
PP_URLLoaderTrusted_StatusCallback cb) = 0;
-
- // Internal function. This will fill in the given response info data and
- // return true on sucesss. If the dowbload was to a file, there will be one
- // plugin reference transferred to the caller. On failure, returns false.
- //
- // If body_as_file_ref is non-zero, this will transfer one plugin reference
- // to that object to the caller.
- virtual bool GetResponseInfoData(URLResponseInfoData* data) = 0;
};
} // namespace thunk

Powered by Google App Engine
This is Rietveld 408576698