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

Side by Side Diff: Source/core/page/DOMWindow.idl

Issue 15901021: Move window.crypto to modules/crypto (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix compile error in debug mode Created 7 years, 6 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/core/page/DOMWindow.cpp ('k') | Source/modules/crypto/Crypto.h » ('j') | 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 24 matching lines...) Expand all
35 [Replaceable] readonly attribute Screen screen; 35 [Replaceable] readonly attribute Screen screen;
36 [Replaceable] readonly attribute History history; 36 [Replaceable] readonly attribute History history;
37 [Replaceable] readonly attribute BarProp locationbar; 37 [Replaceable] readonly attribute BarProp locationbar;
38 [Replaceable] readonly attribute BarProp menubar; 38 [Replaceable] readonly attribute BarProp menubar;
39 [Replaceable] readonly attribute BarProp personalbar; 39 [Replaceable] readonly attribute BarProp personalbar;
40 [Replaceable] readonly attribute BarProp scrollbars; 40 [Replaceable] readonly attribute BarProp scrollbars;
41 [Replaceable] readonly attribute BarProp statusbar; 41 [Replaceable] readonly attribute BarProp statusbar;
42 [Replaceable] readonly attribute BarProp toolbar; 42 [Replaceable] readonly attribute BarProp toolbar;
43 [Replaceable, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] readonl y attribute Navigator navigator; 43 [Replaceable, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] readonl y attribute Navigator navigator;
44 [Replaceable] readonly attribute Navigator clientInformation; 44 [Replaceable] readonly attribute Navigator clientInformation;
45 readonly attribute Crypto crypto;
46 [DoNotCheckSecurity, CustomSetter, Unforgeable, Replaceable, PerWorldBinding s, ActivityLog=AccessForIsolatedWorlds] readonly attribute Location location; 45 [DoNotCheckSecurity, CustomSetter, Unforgeable, Replaceable, PerWorldBinding s, ActivityLog=AccessForIsolatedWorlds] readonly attribute Location location;
47 [MeasureAs=WindowEvent, NotEnumerable, Replaceable, CustomGetter, CustomSett er] readonly attribute Event event; 46 [MeasureAs=WindowEvent, NotEnumerable, Replaceable, CustomGetter, CustomSett er] readonly attribute Event event;
48 47
49 Selection getSelection(); 48 Selection getSelection();
50 49
51 [CheckSecurityForNode] readonly attribute Element frameElement; 50 [CheckSecurityForNode] readonly attribute Element frameElement;
52 51
53 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void focus(); 52 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void focus();
54 [DoNotCheckSecurity] void blur(); 53 [DoNotCheckSecurity] void blur();
55 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void close(); 54 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void close();
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 attribute ShadowRootConstructor WebKitShadowRoot; 311 attribute ShadowRootConstructor WebKitShadowRoot;
313 [Conditional=WEB_AUDIO] attribute PannerNodeConstructor webkitAudioPannerNod e; 312 [Conditional=WEB_AUDIO] attribute PannerNodeConstructor webkitAudioPannerNod e;
314 313
315 // window.toString() requires special handling in V8 314 // window.toString() requires special handling in V8
316 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 315 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
317 316
318 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter DOMWindow(unsig ned long index); 317 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter DOMWindow(unsig ned long index);
319 [Custom, NotEnumerable] getter DOMWindow (DOMString name); 318 [Custom, NotEnumerable] getter DOMWindow (DOMString name);
320 }; 319 };
321 320
OLDNEW
« no previous file with comments | « Source/core/page/DOMWindow.cpp ('k') | Source/modules/crypto/Crypto.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698