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

Unified Diff: webkit/glue/plugins/plugin_instance.cc

Issue 4832002: Add PluginDataRemover. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: foo Created 10 years, 1 month 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 | « webkit/glue/plugins/plugin_instance.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/plugin_instance.cc
diff --git a/webkit/glue/plugins/plugin_instance.cc b/webkit/glue/plugins/plugin_instance.cc
index b271e4d85c96e5792e40e41d3d56d8870fe92631..65ae0b64e74e53289d77b917c5d1882d4d1fcb0a 100644
--- a/webkit/glue/plugins/plugin_instance.cc
+++ b/webkit/glue/plugins/plugin_instance.cc
@@ -342,6 +342,14 @@ bool PluginInstance::NPP_Print(NPPrint* platform_print) {
return false;
}
+NPError PluginInstance::NPP_ClearSiteData(uint64 flags,
+ const char* domain,
+ uint64 max_age) {
+ DCHECK(npp_functions_ != 0);
+ // TODO(bauerb): Call NPAPI function when it is defined in the header.
+ return NPERR_NO_ERROR;
+}
+
void PluginInstance::SendJavaScriptStream(const GURL& url,
const std::string& result,
bool success,
« no previous file with comments | « webkit/glue/plugins/plugin_instance.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698