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