diff options
Diffstat (limited to 'chrome/renderer/extensions/file_system_natives.h')
-rw-r--r-- | chrome/renderer/extensions/file_system_natives.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/chrome/renderer/extensions/file_system_natives.h b/chrome/renderer/extensions/file_system_natives.h index 6768eae..c57a9a9 100644 --- a/chrome/renderer/extensions/file_system_natives.h +++ b/chrome/renderer/extensions/file_system_natives.h @@ -6,19 +6,16 @@ #define CHROME_RENDERER_EXTENSIONS_FILE_SYSTEM_NATIVES_H_ #include "base/compiler_specific.h" -#include "chrome/renderer/extensions/object_backed_native_handler.h" +#include "chrome/renderer/extensions/chrome_v8_extension.h" namespace extensions { // Custom bindings for the nativeFileSystem API. -class FileSystemNatives : public ObjectBackedNativeHandler { +class FileSystemNatives : public ChromeV8Extension { public: - explicit FileSystemNatives(v8::Handle<v8::Context> context); + FileSystemNatives(); private: - v8::Handle<v8::Value> GetFileEntry(const v8::Arguments& args); - v8::Handle<v8::Value> GetIsolatedFileSystem(const v8::Arguments& args); - DISALLOW_COPY_AND_ASSIGN(FileSystemNatives); }; |