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

Side by Side Diff: webkit/glue/plugins/plugin_instance.cc

Issue 4832002: Add PluginDataRemover. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "build/build_config.h" 5 #include "build/build_config.h"
6 6
7 #include "webkit/glue/plugins/plugin_instance.h" 7 #include "webkit/glue/plugins/plugin_instance.h"
8 8
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 335
336 bool PluginInstance::NPP_Print(NPPrint* platform_print) { 336 bool PluginInstance::NPP_Print(NPPrint* platform_print) {
337 DCHECK(npp_functions_ != 0); 337 DCHECK(npp_functions_ != 0);
338 if (npp_functions_->print != 0) { 338 if (npp_functions_->print != 0) {
339 npp_functions_->print(npp_, platform_print); 339 npp_functions_->print(npp_, platform_print);
340 return true; 340 return true;
341 } 341 }
342 return false; 342 return false;
343 } 343 }
344 344
345 NPError PluginInstance::NPP_ClearSiteData(uint64 flags,
346 const char* domain,
347 uint64 max_age) {
348 DCHECK(npp_functions_ != 0);
349 if (npp_functions_->clearsitedata != 0) {
350 return npp_functions_->clearsitedata(npp_, flags, domain, max_age);
351 }
352 return NPERR_INVALID_FUNCTABLE_ERROR;
353 }
354
345 void PluginInstance::SendJavaScriptStream(const GURL& url, 355 void PluginInstance::SendJavaScriptStream(const GURL& url,
346 const std::string& result, 356 const std::string& result,
347 bool success, 357 bool success,
348 int notify_id) { 358 int notify_id) {
349 bool notify; 359 bool notify;
350 void* notify_data; 360 void* notify_data;
351 GetNotifyData(notify_id, &notify, &notify_data); 361 GetNotifyData(notify_id, &notify, &notify_data);
352 362
353 if (success) { 363 if (success) {
354 PluginStringStream *stream = 364 PluginStringStream *stream =
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 *notify = true; 638 *notify = true;
629 *notify_data = iter->second; 639 *notify_data = iter->second;
630 pending_requests_.erase(iter); 640 pending_requests_.erase(iter);
631 } else { 641 } else {
632 *notify = false; 642 *notify = false;
633 *notify_data = NULL; 643 *notify_data = NULL;
634 } 644 }
635 } 645 }
636 646
637 } // namespace NPAPI 647 } // namespace NPAPI
OLDNEW
« third_party/npapi/bindings/npfunctions.h ('K') | « webkit/glue/plugins/plugin_instance.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698