| 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 | 319 |
| 320 void setFocused(bool); | 320 void setFocused(bool); |
| 321 | 321 |
| 322 bool ignoreLayoutWithPendingStylesheets(Document*); | 322 bool ignoreLayoutWithPendingStylesheets(Document*); |
| 323 | 323 |
| 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 String serializeNavigationMarkup(); | 327 String serializeNavigationMarkup(); |
| 328 void hideAllTransitionElements(); | 328 void hideAllTransitionElements(); |
| 329 void showAllTransitionElements(); |
| 329 | 330 |
| 330 unsigned countHitRegions(CanvasRenderingContext2D*); | 331 unsigned countHitRegions(CanvasRenderingContext2D*); |
| 331 | 332 |
| 332 void forcePluginPlaceholder(HTMLElement* plugin, PassRefPtrWillBeRawPtr<Docu
mentFragment>, ExceptionState&); | 333 void forcePluginPlaceholder(HTMLElement* plugin, PassRefPtrWillBeRawPtr<Docu
mentFragment>, ExceptionState&); |
| 333 void forcePluginPlaceholder(HTMLElement* plugin, const Dictionary& options,
ExceptionState&); | 334 void forcePluginPlaceholder(HTMLElement* plugin, const Dictionary& options,
ExceptionState&); |
| 334 | 335 |
| 335 Iterator* iterator(ScriptState*, ExceptionState&); | 336 Iterator* iterator(ScriptState*, ExceptionState&); |
| 336 | 337 |
| 337 private: | 338 private: |
| 338 explicit Internals(Document*); | 339 explicit Internals(Document*); |
| 339 Document* contextDocument() const; | 340 Document* contextDocument() const; |
| 340 LocalFrame* frame() const; | 341 LocalFrame* frame() const; |
| 341 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 342 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
| 342 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 343 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
| 343 | 344 |
| 344 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 345 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 345 Member<InternalRuntimeFlags> m_runtimeFlags; | 346 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 346 Member<InternalProfilers> m_profilers; | 347 Member<InternalProfilers> m_profilers; |
| 347 }; | 348 }; |
| 348 | 349 |
| 349 } // namespace blink | 350 } // namespace blink |
| 350 | 351 |
| 351 #endif // Internals_h | 352 #endif // Internals_h |
| OLD | NEW |