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/testing/Internals.idl

Issue 2586863002: Worker: Enable UseCounter for SharedWorkerGlobalScope (Closed)
Patch Set: simplify Created 3 years, 10 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple 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 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 DOMString selectedTextForClipboard(); 321 DOMString selectedTextForClipboard();
322 322
323 void setVisualViewportOffset(long x, long y); 323 void setVisualViewportOffset(long x, long y);
324 int visualViewportHeight(); 324 int visualViewportHeight();
325 int visualViewportWidth(); 325 int visualViewportWidth();
326 double visualViewportScrollX(); 326 double visualViewportScrollX();
327 double visualViewportScrollY(); 327 double visualViewportScrollY();
328 328
329 bool magnifyScaleAroundAnchor(float offset, float x, float y); 329 bool magnifyScaleAroundAnchor(float offset, float x, float y);
330 330
331 boolean isUseCounted(Document document, long useCounterId); 331 boolean isUseCounted(Document document, unsigned long feature);
332 boolean isCSSPropertyUseCounted(Document document, DOMString propertyName); 332 boolean isCSSPropertyUseCounted(Document document, DOMString propertyName);
333 333
334 iterable<long>; 334 iterable<long>;
335 335
336 [Unscopable] readonly attribute DOMString unscopableAttribute; 336 [Unscopable] readonly attribute DOMString unscopableAttribute;
337 [Unscopable] DOMString unscopableMethod(); 337 [Unscopable] DOMString unscopableMethod();
338 338
339 ClientRectList focusRingRects(Element element); 339 ClientRectList focusRingRects(Element element);
340 ClientRectList outlineRects(Element element); 340 ClientRectList outlineRects(Element element);
341 void setCapsLockState(boolean enabled); 341 void setCapsLockState(boolean enabled);
(...skipping 11 matching lines...) Expand all
353 DOMString getProgrammaticScrollAnimationState(Node node); 353 DOMString getProgrammaticScrollAnimationState(Node node);
354 354
355 ClientRect visualRect(Node node); 355 ClientRect visualRect(Node node);
356 356
357 OriginTrialsTest originTrialsTest(); 357 OriginTrialsTest originTrialsTest();
358 358
359 void crash(); 359 void crash();
360 360
361 void setIsLowEndDevice(boolean isLowEndDevice); 361 void setIsLowEndDevice(boolean isLowEndDevice);
362 }; 362 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | third_party/WebKit/Source/core/testing/WorkerInternals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698