Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 bindings for the experimental.app API. | 5 // Custom bindings for the experimental.app API. |
| 6 | 6 |
| 7 var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); | 7 var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); |
| 8 var fileSystemHelpers = requireNative('file_system_natives'); | 8 var fileSystemHelpers = requireNative('file_system_natives'); |
| 9 var GetIsolatedFileSystem = fileSystemHelpers.GetIsolatedFileSystem; | 9 var GetIsolatedFileSystem = fileSystemHelpers.GetIsolatedFileSystem; |
| 10 var appNatives = requireNative('experimental_app'); | 10 var appNatives = requireNative('experimental_app'); |
| 11 var DeserializeString = appNatives.DeserializeString; | 11 var DeserializeString = appNatives.DeserializeString; |
| 12 var SerializeToString = appNatives.SerializeToString; | |
| 12 var CreateBlob = appNatives.CreateBlob; | 13 var CreateBlob = appNatives.CreateBlob; |
| 13 | 14 |
| 14 chromeHidden.Event.registerArgumentMassager('experimental.app.onLaunched', | 15 chromeHidden.Event.registerArgumentMassager('experimental.app.onLaunched', |
| 15 function(args, dispatch) { | 16 function(args, dispatch) { |
| 16 var launchData = args[0]; | 17 var id = args[0]; |
|
Mihai Parparita -not on Chrome
2012/08/11 00:25:45
Nit: call this intentId.
thorogood
2012/08/13 05:00:12
Done.
| |
| 17 var intentData = args[1]; | 18 var launchData = args[1]; |
| 19 var intentData = args[2]; | |
| 20 | |
| 21 if (launchData) { | |
| 22 var fn = function(success, data) { | |
| 23 chrome.experimental.app.postIntentResponse({ | |
| 24 'intentId': id, | |
| 25 'success': success, | |
| 26 'data': SerializeToString(data) | |
| 27 }); | |
| 28 }; | |
| 29 launchData.intent.postResult = fn.bind(undefined, true); | |
| 30 launchData.intent.postFailure = fn.bind(undefined, false); | |
| 31 } | |
| 18 | 32 |
| 19 if (launchData && intentData) { | 33 if (launchData && intentData) { |
| 20 switch(intentData.format) { | 34 switch(intentData.format) { |
| 21 case('fileEntry'): | 35 case('fileEntry'): |
| 22 var fs = GetIsolatedFileSystem(intentData.fileSystemId); | 36 var fs = GetIsolatedFileSystem(intentData.fileSystemId); |
| 23 try { | 37 try { |
| 24 fs.root.getFile(intentData.baseName, {}, function(fileEntry) { | 38 fs.root.getFile(intentData.baseName, {}, function(fileEntry) { |
| 25 launchData.intent.data = fileEntry; | 39 launchData.intent.data = fileEntry; |
| 26 launchData.intent.postResult = function() {}; | |
| 27 launchData.intent.postFailure = function() {}; | |
| 28 dispatch([launchData]); | 40 dispatch([launchData]); |
| 29 }, function(fileError) { | 41 }, function(fileError) { |
| 30 console.error('Error getting fileEntry, code: ' + fileError.code); | 42 console.error('Error getting fileEntry, code: ' + fileError.code); |
| 31 dispatch([]); | 43 dispatch([]); |
| 32 }); | 44 }); |
| 33 } catch (e) { | 45 } catch (e) { |
| 34 console.error('Error in event handler for onLaunched: ' + e.stack); | 46 console.error('Error in event handler for onLaunched: ' + e.stack); |
| 35 dispatch([]); | 47 dispatch([]); |
| 36 } | 48 } |
| 37 break; | 49 break; |
| 38 case('serialized'): | 50 case('serialized'): |
| 39 var deserializedData = DeserializeString(intentData.data); | 51 var deserializedData = DeserializeString(intentData.data); |
| 40 launchData.intent.data = deserializedData; | 52 launchData.intent.data = deserializedData; |
| 41 launchData.intent.postResult = function() {}; | |
| 42 launchData.intent.postFailure = function() {}; | |
| 43 dispatch([launchData]); | 53 dispatch([launchData]); |
| 44 break; | 54 break; |
| 45 case('blob'): | 55 case('blob'): |
| 46 var blobData = CreateBlob(intentData.blobFilePath, | 56 var blobData = CreateBlob(intentData.blobFilePath, |
| 47 intentData.blobLength); | 57 intentData.blobLength); |
| 48 launchData.intent.data = blobData; | 58 launchData.intent.data = blobData; |
| 49 launchData.intent.postResult = function() {}; | |
| 50 launchData.intent.postFailure = function() {}; | |
| 51 dispatch([launchData]); | 59 dispatch([launchData]); |
| 52 break; | 60 break; |
| 53 default: | 61 default: |
| 54 console.error('Unexpected launch data format'); | 62 console.error('Unexpected launch data format'); |
| 55 dispatch([]); | 63 dispatch([]); |
| 56 } | 64 } |
| 57 } else if (launchData) { | 65 } else if (launchData) { |
| 58 dispatch([launchData]); | 66 dispatch([launchData]); |
| 59 } else { | 67 } else { |
| 60 dispatch([]); | 68 dispatch([]); |
| 61 } | 69 } |
| 62 }); | 70 }); |
| OLD | NEW |