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

Side by Side Diff: chrome/renderer/resources/extensions/file_system_provider_custom_bindings.js

Issue 258783006: [fsp] Add the getMetadata operation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 7 months 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // Custom binding for the fileSystemProvider API. 5 // Custom binding for the fileSystemProvider API.
6 6
7 var binding = require('binding').Binding.create('fileSystemProvider'); 7 var binding = require('binding').Binding.create('fileSystemProvider');
8 var fileSystemProviderInternal = 8 var fileSystemProviderInternal =
9 require('binding').Binding.create('fileSystemProviderInternal').generate(); 9 require('binding').Binding.create('fileSystemProviderInternal').generate();
10 var eventBindings = require('event_bindings'); 10 var eventBindings = require('event_bindings');
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 fileSystemProviderInternal.unmountRequestedSuccess( 90 fileSystemProviderInternal.unmountRequestedSuccess(
91 fileSystemId, requestId); 91 fileSystemId, requestId);
92 }; 92 };
93 var onErrorCallback = function(error) { 93 var onErrorCallback = function(error) {
94 fileSystemProviderInternal.unmountRequestedError( 94 fileSystemProviderInternal.unmountRequestedError(
95 fileSystemId, requestId, error); 95 fileSystemId, requestId, error);
96 } 96 }
97 dispatch([fileSystemId, onSuccessCallback, onErrorCallback]); 97 dispatch([fileSystemId, onSuccessCallback, onErrorCallback]);
98 }); 98 });
99 99
100 eventBindings.registerArgumentMassager(
101 'fileSystemProvider.onGetMetadataRequested',
102 function(args, dispatch) {
103 var fileSystemId = args[0];
104 var requestId = args[1];
105 var entryPath = args[2];
106 var onSuccessCallback = function(metadata) {
107 // Serialize the Date as a string.
108 metadata.modificationTime.value = metadata.modificationTime.toString();
109 fileSystemProviderInternal.getMetadataRequestedSuccess(
110 fileSystemId, requestId, metadata);
111 };
112 var onErrorCallback = function(error) {
113 fileSystemProviderInternal.getMetadataRequestedError(
114 fileSystemId, requestId, error);
115 }
116 dispatch([fileSystemId, entryPath, onSuccessCallback, onErrorCallback]);
117 });
118
100 exports.binding = binding.generate(); 119 exports.binding = binding.generate();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698