Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/GlobalJsObject.h

Issue 10296001: Implement File API (Closed)
Patch Set: Addressed all remaining issues Created April 16, 2013, 11:55 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/GlobalJsObject.h
===================================================================
--- a/src/GlobalJsObject.h
+++ b/src/GlobalJsObject.h
@@ -5,13 +5,15 @@
namespace AdblockPlus
{
+ class FileSystem;
+ class WebRequest;
class ErrorCallback;
- class WebRequest;
namespace GlobalJsObject
{
- v8::Handle<v8::ObjectTemplate> Create(ErrorCallback& errorCallback,
- WebRequest& webRequest);
+ v8::Handle<v8::ObjectTemplate> Create(FileSystem& fileSystem,
+ WebRequest& webRequest,
+ ErrorCallback& errorCallback);
}
}

Powered by Google App Engine
This is Rietveld