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