Index: chrome/renderer/resources/extensions/app_runtime_custom_bindings.js |
diff --git a/chrome/renderer/resources/extensions/experimental.app_custom_bindings.js b/chrome/renderer/resources/extensions/app_runtime_custom_bindings.js |
similarity index 92% |
rename from chrome/renderer/resources/extensions/experimental.app_custom_bindings.js |
rename to chrome/renderer/resources/extensions/app_runtime_custom_bindings.js |
index a586df96f8e9e8eec8cb6c98678c7a71a9962894..77da14918a4abcd929ad60cb8d410bbfbf8f99f5 100644 |
--- a/chrome/renderer/resources/extensions/experimental.app_custom_bindings.js |
+++ b/chrome/renderer/resources/extensions/app_runtime_custom_bindings.js |
@@ -2,16 +2,16 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-// Custom bindings for the experimental.app API. |
+// Custom bindings for the chrome.app.runtime API. |
var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); |
var fileSystemHelpers = requireNative('file_system_natives'); |
var GetIsolatedFileSystem = fileSystemHelpers.GetIsolatedFileSystem; |
-var appNatives = requireNative('experimental_app'); |
+var appNatives = requireNative('app_runtime'); |
var DeserializeString = appNatives.DeserializeString; |
var CreateBlob = appNatives.CreateBlob; |
-chromeHidden.Event.registerArgumentMassager('experimental.app.onLaunched', |
+chromeHidden.Event.registerArgumentMassager('app.runtime.onLaunched', |
function(args, dispatch) { |
var launchData = args[0]; |
var intentData = args[1]; |