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

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

Issue 27400003: Get rid of custom code for Window.location attribute setter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Keep attribute Replaceable Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/bindings/v8/custom/V8WindowCustom.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 23 matching lines...) Expand all
34 [Replaceable] readonly attribute Screen screen; 34 [Replaceable] readonly attribute Screen screen;
35 [Replaceable] readonly attribute History history; 35 [Replaceable] readonly attribute History history;
36 [Replaceable] readonly attribute BarProp locationbar; 36 [Replaceable] readonly attribute BarProp locationbar;
37 [Replaceable] readonly attribute BarProp menubar; 37 [Replaceable] readonly attribute BarProp menubar;
38 [Replaceable] readonly attribute BarProp personalbar; 38 [Replaceable] readonly attribute BarProp personalbar;
39 [Replaceable] readonly attribute BarProp scrollbars; 39 [Replaceable] readonly attribute BarProp scrollbars;
40 [Replaceable] readonly attribute BarProp statusbar; 40 [Replaceable] readonly attribute BarProp statusbar;
41 [Replaceable] readonly attribute BarProp toolbar; 41 [Replaceable] readonly attribute BarProp toolbar;
42 [Replaceable, PerWorldBindings, ActivityLogging=GetterForIsolatedWorlds] rea donly attribute Navigator navigator; 42 [Replaceable, PerWorldBindings, ActivityLogging=GetterForIsolatedWorlds] rea donly attribute Navigator navigator;
43 [Replaceable] readonly attribute Navigator clientInformation; 43 [Replaceable] readonly attribute Navigator clientInformation;
44 [DoNotCheckSecurity, CustomSetter, Unforgeable, Replaceable, PerWorldBinding s, ActivityLogging=AccessForIsolatedWorlds] readonly attribute Location location ; 44 [DoNotCheckSecurity, Unforgeable, Replaceable, PerWorldBindings, ActivityLog ging=AccessForIsolatedWorlds, PutForwards=href] readonly attribute Location loca tion;
45 [Custom, MeasureAs=WindowEvent, NotEnumerable, Replaceable] readonly attribu te Event event; 45 [Custom, MeasureAs=WindowEvent, NotEnumerable, Replaceable] readonly attribu te Event event;
46 46
47 Selection getSelection(); 47 Selection getSelection();
48 48
49 [CheckSecurityForNode] readonly attribute Element frameElement; 49 [CheckSecurityForNode] readonly attribute Element frameElement;
50 50
51 [DoNotCheckSecurity, CallWith=ExecutionContext] void focus(); 51 [DoNotCheckSecurity, CallWith=ExecutionContext] void focus();
52 [DoNotCheckSecurity] void blur(); 52 [DoNotCheckSecurity] void blur();
53 [DoNotCheckSecurity, CallWith=ExecutionContext] void close(); 53 [DoNotCheckSecurity, CallWith=ExecutionContext] void close();
54 54
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 // window.toString() requires special handling in V8 306 // window.toString() requires special handling in V8
307 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 307 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
308 308
309 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned long index); 309 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned long index);
310 [Custom, NotEnumerable] getter Window (DOMString name); 310 [Custom, NotEnumerable] getter Window (DOMString name);
311 }; 311 };
312 312
313 Window implements ImageBitmapFactories; 313 Window implements ImageBitmapFactories;
314 Window implements WindowTimers; 314 Window implements WindowTimers;
315 Window implements WindowBase64; 315 Window implements WindowBase64;
OLDNEW
« no previous file with comments | « Source/bindings/v8/custom/V8WindowCustom.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698