diff options
author | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-27 17:46:03 +0000 |
---|---|---|
committer | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-27 17:46:03 +0000 |
commit | 3bd112e8adf2fc286bebf69fa93418c336e69f86 (patch) | |
tree | 9b1a4b56dc83e9c06066a43843da32387e329b99 /ppapi | |
parent | e3be2765447759c286f7004fade76d8a47c90f82 (diff) | |
download | chromium_src-3bd112e8adf2fc286bebf69fa93418c336e69f86.zip chromium_src-3bd112e8adf2fc286bebf69fa93418c336e69f86.tar.gz chromium_src-3bd112e8adf2fc286bebf69fa93418c336e69f86.tar.bz2 |
Two files have bad generate_thunk annotations:
FileIO_Dev doesn't have backing functions in an API for functions in the IDL so a generated thunk won't compile.
URLUtil_Dev has an existing manually created thunk. A generated one doesn't compile, and I don't have time to debug it.
Removing bad annotations since they cause generator.py to produce bad thunk files.
R=yzshen@chromium.org
Review URL: https://codereview.chromium.org/91533004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237595 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/api/dev/ppb_file_io_dev.idl | 2 | ||||
-rw-r--r-- | ppapi/api/dev/ppb_url_util_dev.idl | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/ppapi/api/dev/ppb_file_io_dev.idl b/ppapi/api/dev/ppb_file_io_dev.idl index f46a4a8..82a64521 100644 --- a/ppapi/api/dev/ppb_file_io_dev.idl +++ b/ppapi/api/dev/ppb_file_io_dev.idl @@ -10,8 +10,6 @@ * permissions. */ -[generate_thunk] - label Chrome { M31 = 0.1 }; diff --git a/ppapi/api/dev/ppb_url_util_dev.idl b/ppapi/api/dev/ppb_url_util_dev.idl index 6cd0e75..f3eb66f 100644 --- a/ppapi/api/dev/ppb_url_util_dev.idl +++ b/ppapi/api/dev/ppb_url_util_dev.idl @@ -7,8 +7,6 @@ * This file defines the <code>PPB_URLUtil_Dev</code> interface. */ -[generate_thunk] - label Chrome { M17 = 0.6, M31 = 0.7 |