diff options
author | hirono@chromium.org <hirono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-13 14:25:11 +0000 |
---|---|---|
committer | hirono@chromium.org <hirono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-13 14:25:11 +0000 |
commit | 6d9f31f7efaf0e0fdeb278856e0902c9629697de (patch) | |
tree | 865ff5249adf05698adf48cb0660e53cef1dc3b1 /extensions/common/extension_api.cc | |
parent | a8be443452251c214c67f75acd7d4dc229db1466 (diff) | |
download | chromium_src-6d9f31f7efaf0e0fdeb278856e0902c9629697de.zip chromium_src-6d9f31f7efaf0e0fdeb278856e0902c9629697de.tar.gz chromium_src-6d9f31f7efaf0e0fdeb278856e0902c9629697de.tar.bz2 |
Files.app: Conver private API scheme from JSON to IDL.
To describe the scheme of extension API, we can use both JSON and IDL. Since IDL is more readable than JSON, we switched the format into IDL.
BUG=247260
TEST=FileManagerBrowserTest
Review URL: https://codereview.chromium.org/112803002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240637 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/common/extension_api.cc')
-rw-r--r-- | extensions/common/extension_api.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/extensions/common/extension_api.cc b/extensions/common/extension_api.cc index dd68ffd..d5e96ad 100644 --- a/extensions/common/extension_api.cc +++ b/extensions/common/extension_api.cc @@ -241,8 +241,6 @@ void ExtensionAPI::InitDefaultConfiguration() { RegisterSchemaResource("runtime", IDR_EXTENSION_API_JSON_RUNTIME); RegisterSchemaResource("fileBrowserHandler", IDR_EXTENSION_API_JSON_FILEBROWSERHANDLER); - RegisterSchemaResource("fileBrowserPrivate", - IDR_EXTENSION_API_JSON_FILEBROWSERPRIVATE); RegisterSchemaResource("inputMethodPrivate", IDR_EXTENSION_API_JSON_INPUTMETHODPRIVATE); RegisterSchemaResource("pageAction", IDR_EXTENSION_API_JSON_PAGEACTION); |