| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 // the implementation, we provide a Transferable typedef but with an | 209 // the implementation, we provide a Transferable typedef but with an |
| 210 // incomplete type. | 210 // incomplete type. |
| 211 // | 211 // |
| 212 // FIXME: make this typedef accurate once enough of https://crbug.com/240176 | 212 // FIXME: make this typedef accurate once enough of https://crbug.com/240176 |
| 213 // is in place. | 213 // is in place. |
| 214 // FIXME: consider putting this typedef in an .idl file containing spec-wide | 214 // FIXME: consider putting this typedef in an .idl file containing spec-wide |
| 215 // utility type definitions. | 215 // utility type definitions. |
| 216 typedef MessagePort Transferable; | 216 typedef MessagePort Transferable; |
| 217 | 217 |
| 218 Window implements GlobalEventHandlers; | 218 Window implements GlobalEventHandlers; |
| 219 Window implements WindowBase64; | 219 Window implements WindowOrWorkerGlobalScope; |
| 220 Window implements WindowEventHandlers; | 220 Window implements WindowEventHandlers; |
| 221 Window implements WindowTimers; | 221 Window implements WindowTimers; |
| OLD | NEW |