 Chromium Code Reviews
 Chromium Code Reviews Issue 340050:
  Add the plumbing and test code for plugins opening files from the sandbox. Th...  (Closed) 
  Base URL: svn://chrome-svn/chrome/trunk/src/
    
  
    Issue 340050:
  Add the plumbing and test code for plugins opening files from the sandbox. Th...  (Closed) 
  Base URL: svn://chrome-svn/chrome/trunk/src/| Index: webkit/glue/webplugin_delegate.h | 
| =================================================================== | 
| --- webkit/glue/webplugin_delegate.h (revision 30698) | 
| +++ webkit/glue/webplugin_delegate.h (working copy) | 
| @@ -137,6 +137,10 @@ | 
| virtual NPError FlushRenderContext(NPRenderContext* context) { | 
| return NPERR_GENERIC_ERROR; | 
| } | 
| + | 
| + virtual NPError OpenFileInSandbox(const char* file_name, void** handle) { | 
| + return NPERR_GENERIC_ERROR; | 
| + } | 
| }; | 
| } // namespace webkit_glue |