| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 void setNetworkStateNotifierTestOnly(bool); | 324 void setNetworkStateNotifierTestOnly(bool); |
| 325 // Test must call setNetworkStateNotifierTestOnly(true) before calling setNe
tworkConnectionInfo. | 325 // Test must call setNetworkStateNotifierTestOnly(true) before calling setNe
tworkConnectionInfo. |
| 326 void setNetworkConnectionInfo(const String&, ExceptionState&); | 326 void setNetworkConnectionInfo(const String&, ExceptionState&); |
| 327 | 327 |
| 328 PassRefPtrWillBeRawPtr<ClientRect> boundsInRootViewSpace(Element*); | 328 PassRefPtrWillBeRawPtr<ClientRect> boundsInRootViewSpace(Element*); |
| 329 String serializeNavigationMarkup(); | 329 String serializeNavigationMarkup(); |
| 330 Vector<String> getTransitionElementIds(); | 330 Vector<String> getTransitionElementIds(); |
| 331 PassRefPtrWillBeRawPtr<ClientRectList> getTransitionElementRects(); | 331 PassRefPtrWillBeRawPtr<ClientRectList> getTransitionElementRects(); |
| 332 void hideAllTransitionElements(); | 332 void hideAllTransitionElements(); |
| 333 void showAllTransitionElements(); | 333 void showAllTransitionElements(); |
| 334 void setExitTransitionStylesheetsEnabled(bool); |
| 334 | 335 |
| 335 unsigned countHitRegions(CanvasRenderingContext2D*); | 336 unsigned countHitRegions(CanvasRenderingContext2D*); |
| 336 | 337 |
| 337 void forcePluginPlaceholder(HTMLElement* plugin, PassRefPtrWillBeRawPtr<Docu
mentFragment>, ExceptionState&); | 338 void forcePluginPlaceholder(HTMLElement* plugin, PassRefPtrWillBeRawPtr<Docu
mentFragment>, ExceptionState&); |
| 338 void forcePluginPlaceholder(HTMLElement* plugin, const PluginPlaceholderOpti
ons&, ExceptionState&); | 339 void forcePluginPlaceholder(HTMLElement* plugin, const PluginPlaceholderOpti
ons&, ExceptionState&); |
| 339 | 340 |
| 340 Iterator* iterator(ScriptState*, ExceptionState&); | 341 Iterator* iterator(ScriptState*, ExceptionState&); |
| 341 | 342 |
| 342 private: | 343 private: |
| 343 explicit Internals(Document*); | 344 explicit Internals(Document*); |
| 344 Document* contextDocument() const; | 345 Document* contextDocument() const; |
| 345 LocalFrame* frame() const; | 346 LocalFrame* frame() const; |
| 346 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 347 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
| 347 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 348 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
| 348 | 349 |
| 349 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 350 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 350 Member<InternalRuntimeFlags> m_runtimeFlags; | 351 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 351 }; | 352 }; |
| 352 | 353 |
| 353 } // namespace blink | 354 } // namespace blink |
| 354 | 355 |
| 355 #endif // Internals_h | 356 #endif // Internals_h |
| OLD | NEW |