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

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

Issue 1859293002: [DevTools] Move Console to v8_inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 [Replaceable] readonly attribute long outerWidth; 133 [Replaceable] readonly attribute long outerWidth;
134 [Replaceable] readonly attribute long outerHeight; 134 [Replaceable] readonly attribute long outerHeight;
135 [Replaceable] readonly attribute double devicePixelRatio; 135 [Replaceable] readonly attribute double devicePixelRatio;
136 136
137 // Selection API 137 // Selection API
138 // http://w3c.github.io/selection-api/#extensions-to-window-interface 138 // http://w3c.github.io/selection-api/#extensions-to-window-interface
139 Selection? getSelection(); 139 Selection? getSelection();
140 140
141 // Console API 141 // Console API
142 // https://console.spec.whatwg.org/#console-interface 142 // https://console.spec.whatwg.org/#console-interface
143 [Replaceable] readonly attribute Console console; 143 // attribute console is installed by InspectedContext in v8_inspector.
dgozman 2016/04/12 23:21:57 // [Replaceable] readonly attribute Console consol
kozy 2016/04/12 23:34:25 Done.
144 144
145 // Non-standard APIs 145 // Non-standard APIs
146 [MeasureAs=WindowClientInformation, Replaceable] readonly attribute Navigato r clientInformation; 146 [MeasureAs=WindowClientInformation, Replaceable] readonly attribute Navigato r clientInformation;
147 [MeasureAs=WindowEvent, Custom, NotEnumerable] attribute Event event; 147 [MeasureAs=WindowEvent, Custom, NotEnumerable] attribute Event event;
148 [MeasureAs=WindowFind] boolean find([Default=Undefined] optional DOMString s tring, 148 [MeasureAs=WindowFind] boolean find([Default=Undefined] optional DOMString s tring,
149 [Default=Undefined] optional boolean cas eSensitive, 149 [Default=Undefined] optional boolean cas eSensitive,
150 [Default=Undefined] optional boolean bac kwards, 150 [Default=Undefined] optional boolean bac kwards,
151 [Default=Undefined] optional boolean wra p, 151 [Default=Undefined] optional boolean wra p,
152 [Default=Undefined] optional boolean who leWord, 152 [Default=Undefined] optional boolean who leWord,
153 [Default=Undefined] optional boolean sea rchInFrames, 153 [Default=Undefined] optional boolean sea rchInFrames,
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 // FIXME: make this typedef accurate once enough of http://crbug.com/240176 201 // FIXME: make this typedef accurate once enough of http://crbug.com/240176
202 // is in place. 202 // is in place.
203 // FIXME: consider putting this typedef in an .idl file containing spec-wide 203 // FIXME: consider putting this typedef in an .idl file containing spec-wide
204 // utility type definitions. 204 // utility type definitions.
205 typedef MessagePort Transferable; 205 typedef MessagePort Transferable;
206 206
207 Window implements GlobalEventHandlers; 207 Window implements GlobalEventHandlers;
208 Window implements WindowBase64; 208 Window implements WindowBase64;
209 Window implements WindowEventHandlers; 209 Window implements WindowEventHandlers;
210 Window implements WindowTimers; 210 Window implements WindowTimers;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698