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

Side by Side Diff: Source/WebCore/testing/Internals.idl

Issue 11635024: Merge 137939 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 8 years 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
« no previous file with comments | « Source/WebCore/testing/Internals.cpp ('k') | Source/WebKit/chromium/ChangeLog » ('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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 #endif 132 #endif
133 133
134 long lastSpellCheckRequestSequence(in Document document) raises (DOMExceptio n); 134 long lastSpellCheckRequestSequence(in Document document) raises (DOMExceptio n);
135 long lastSpellCheckProcessedSequence(in Document document) raises (DOMExcept ion); 135 long lastSpellCheckProcessedSequence(in Document document) raises (DOMExcept ion);
136 136
137 sequence<DOMString> userPreferredLanguages(); 137 sequence<DOMString> userPreferredLanguages();
138 void setUserPreferredLanguages(in sequence<DOMString> languages); 138 void setUserPreferredLanguages(in sequence<DOMString> languages);
139 139
140 unsigned long wheelEventHandlerCount(in Document document) raises (DOMExcept ion); 140 unsigned long wheelEventHandlerCount(in Document document) raises (DOMExcept ion);
141 unsigned long touchEventHandlerCount(in Document document) raises (DOMExcept ion); 141 unsigned long touchEventHandlerCount(in Document document) raises (DOMExcept ion);
142 #if defined(ENABLE_TOUCH_EVENT_TRACKING) && ENABLE_TOUCH_EVENT_TRACKING
143 ClientRectList touchEventTargetClientRects(in Document document) raises (DOM Exception);
144 #endif
142 145
143 NodeList nodesFromRect(in Document document, in long x, in long y, 146 NodeList nodesFromRect(in Document document, in long x, in long y,
144 in unsigned long topPadding, in unsigned long rightPadding, in unsigned long bottomPadding, in unsigned long leftPadding, 147 in unsigned long topPadding, in unsigned long rightPadding, in unsigned long bottomPadding, in unsigned long leftPadding,
145 in boolean ignoreClipping, in boolean allowShadowContent) raises (DOMExc eption); 148 in boolean ignoreClipping, in boolean allowShadowContent) raises (DOMExc eption);
146 149
147 void emitInspectorDidBeginFrame(); 150 void emitInspectorDidBeginFrame();
148 void emitInspectorDidCancelFrame(); 151 void emitInspectorDidCancelFrame();
149 152
150 boolean hasSpellingMarker(in Document document, in long from, in long length ) raises (DOMException); 153 boolean hasSpellingMarker(in Document document, in long from, in long length ) raises (DOMException);
151 boolean hasGrammarMarker(in Document document, in long from, in long length) raises (DOMException); 154 boolean hasGrammarMarker(in Document document, in long from, in long length) raises (DOMException);
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 void stopTrackingRepaints(in Document document) raises (DOMException); 226 void stopTrackingRepaints(in Document document) raises (DOMException);
224 227
225 // Returns a string with information about the mouse cursor used at the spec ified client location. 228 // Returns a string with information about the mouse cursor used at the spec ified client location.
226 DOMString getCurrentCursorInfo(in Document document) raises (DOMException); 229 DOMString getCurrentCursorInfo(in Document document) raises (DOMException);
227 230
228 SerializedScriptValue deserializeBuffer(in ArrayBuffer buffer); 231 SerializedScriptValue deserializeBuffer(in ArrayBuffer buffer);
229 ArrayBuffer serializeObject(in SerializedScriptValue obj); 232 ArrayBuffer serializeObject(in SerializedScriptValue obj);
230 233
231 void setUsesOverlayScrollbars(in boolean enabled); 234 void setUsesOverlayScrollbars(in boolean enabled);
232 }; 235 };
OLDNEW
« no previous file with comments | « Source/WebCore/testing/Internals.cpp ('k') | Source/WebKit/chromium/ChangeLog » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698