diff options
| author | rdevlin.cronin <rdevlin.cronin@chromium.org> | 2016-03-24 13:52:17 -0700 |
|---|---|---|
| committer | Commit bot <commit-bot@chromium.org> | 2016-03-24 20:54:01 +0000 |
| commit | 1cb4c0e1be53447096ae11f820bb408b71184682 (patch) | |
| tree | 7c02b5e09c2c0c08a7faaf6e1eb1ef30aa23d013 /chrome/common/extensions/api/cast_streaming_rtp_stream.idl | |
| parent | 5ca8b4fa7b1f9d53be5f5f1a30b4cecf1c1c4fa5 (diff) | |
| download | chromium_src-1cb4c0e1be53447096ae11f820bb408b71184682.zip chromium_src-1cb4c0e1be53447096ae11f820bb408b71184682.tar.gz chromium_src-1cb4c0e1be53447096ae11f820bb408b71184682.tar.bz2 | |
[Extensions] Convert APIs to use movable types [3]
Generated extensions code used to rely on linked_ptrs for non-copyable types in
containers. Now, we can make these types movable. Update the following APIs
to use movable types in this CL:
- browser.idl
- browsing_data.json
- cast_devices_private.idl
- cast_streaming_receiver_session.idl
- cast_streaming_rtp_stream.idl
- cast_streaming_session.idl
- cast_streaming_udp_transport.idl
- certificate_provider.idl
- certificate_provider_internal.idl
- chrome_web_view_internal.json
- chromeos_info_private.json
- cloud_print_private.json
- command_line_private.json
- commands.json
- content_settings.json
- context_menus.json
- context_menus_internal.json
- cookies.json
- copresence.idl
- copresence_private.idl
BUG=595949
Review URL: https://codereview.chromium.org/1828683002
Cr-Commit-Position: refs/heads/master@{#383142}
Diffstat (limited to 'chrome/common/extensions/api/cast_streaming_rtp_stream.idl')
| -rw-r--r-- | chrome/common/extensions/api/cast_streaming_rtp_stream.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/extensions/api/cast_streaming_rtp_stream.idl b/chrome/common/extensions/api/cast_streaming_rtp_stream.idl index 8425609..da5d02f 100644 --- a/chrome/common/extensions/api/cast_streaming_rtp_stream.idl +++ b/chrome/common/extensions/api/cast_streaming_rtp_stream.idl @@ -7,7 +7,7 @@ // session. // // Valid stream IDs are positive and non-zero. -namespace cast.streaming.rtpStream { +[use_movable_types=true]namespace cast.streaming.rtpStream { // Params for audio and video codec. dictionary CodecSpecificParams { DOMString key; |
