OLD | NEW |
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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 | 328 |
329 DECLARE_TRACE(); | 329 DECLARE_TRACE(); |
330 | 330 |
331 void setValueForUser(Element*, const String&); | 331 void setValueForUser(Element*, const String&); |
332 | 332 |
333 String textSurroundingNode(Node*, int x, int y, unsigned long maxLength); | 333 String textSurroundingNode(Node*, int x, int y, unsigned long maxLength); |
334 | 334 |
335 void setFocused(bool); | 335 void setFocused(bool); |
336 void setInitialFocus(bool); | 336 void setInitialFocus(bool); |
337 | 337 |
338 bool ignoreLayoutWithPendingStylesheets(Document*); | |
339 | |
340 void setNetworkStateNotifierTestOnly(bool); | 338 void setNetworkStateNotifierTestOnly(bool); |
341 // Test must call setNetworkStateNotifierTestOnly(true) before calling setNe
tworkConnectionInfo. | 339 // Test must call setNetworkStateNotifierTestOnly(true) before calling setNe
tworkConnectionInfo. |
342 void setNetworkConnectionInfo(const String&, ExceptionState&); | 340 void setNetworkConnectionInfo(const String&, ExceptionState&); |
343 | 341 |
344 ClientRect* boundsInViewportSpace(Element*); | 342 ClientRect* boundsInViewportSpace(Element*); |
345 | 343 |
346 unsigned countHitRegions(CanvasRenderingContext*); | 344 unsigned countHitRegions(CanvasRenderingContext*); |
347 | 345 |
348 bool isInCanvasFontCache(Document*, const String&); | 346 bool isInCanvasFontCache(Document*, const String&); |
349 unsigned canvasFontCacheMaxFonts(); | 347 unsigned canvasFontCacheMaxFonts(); |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 | 383 |
386 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 384 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
387 Member<InternalRuntimeFlags> m_runtimeFlags; | 385 Member<InternalRuntimeFlags> m_runtimeFlags; |
388 | 386 |
389 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 387 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
390 }; | 388 }; |
391 | 389 |
392 } // namespace blink | 390 } // namespace blink |
393 | 391 |
394 #endif // Internals_h | 392 #endif // Internals_h |
OLD | NEW |