Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(441)

Side by Side Diff: Source/core/frame/Window.idl

Issue 491053004: Expose Web Animations API to Web Workers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Exposing the Web Animations API to Web Workers Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 // Self referential attributes 123 // Self referential attributes
124 [Replaceable, DoNotCheckSecurity] readonly attribute Window self; 124 [Replaceable, DoNotCheckSecurity] readonly attribute Window self;
125 [DoNotCheckSecurity, Unforgeable] readonly attribute Window window; 125 [DoNotCheckSecurity, Unforgeable] readonly attribute Window window;
126 [Replaceable, DoNotCheckSecurity] readonly attribute Window frames; 126 [Replaceable, DoNotCheckSecurity] readonly attribute Window frames;
127 127
128 [DoNotCheckSecurity, Custom=Setter] attribute Window opener; 128 [DoNotCheckSecurity, Custom=Setter] attribute Window opener;
129 [Replaceable, DoNotCheckSecurity] readonly attribute Window parent; 129 [Replaceable, DoNotCheckSecurity] readonly attribute Window parent;
130 [DoNotCheckSecurity, Unforgeable] readonly attribute Window top; 130 [DoNotCheckSecurity, Unforgeable] readonly attribute Window top;
131 131
132 [RaisesException, CallWith=ExecutionContext] Worker createAnimationWorker(DO MString url);
133
132 // DOM Level 2 AbstractView Interface 134 // DOM Level 2 AbstractView Interface
133 readonly attribute Document document; 135 readonly attribute Document document;
134 136
135 // CSSOM View Module 137 // CSSOM View Module
136 MediaQueryList matchMedia(DOMString query); 138 MediaQueryList matchMedia(DOMString query);
137 139
138 // styleMedia has been removed from the CSSOM View specification. 140 // styleMedia has been removed from the CSSOM View specification.
139 readonly attribute StyleMedia styleMedia; 141 readonly attribute StyleMedia styleMedia;
140 142
141 // DOM Level 2 Style Interface 143 // DOM Level 2 Style Interface
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 // FIXME: make this typedef accurate once enough of http://crbug.com/240176 225 // FIXME: make this typedef accurate once enough of http://crbug.com/240176
224 // is in place. 226 // is in place.
225 // FIXME: consider putting this typedef in an .idl file containing spec-wide 227 // FIXME: consider putting this typedef in an .idl file containing spec-wide
226 // utility type definitions. 228 // utility type definitions.
227 typedef MessagePort Transferable; 229 typedef MessagePort Transferable;
228 230
229 Window implements GlobalEventHandlers; 231 Window implements GlobalEventHandlers;
230 Window implements WindowBase64; 232 Window implements WindowBase64;
231 Window implements WindowEventHandlers; 233 Window implements WindowEventHandlers;
232 Window implements WindowTimers; 234 Window implements WindowTimers;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698