| 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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 void startTrackingRepaints(Document*, ExceptionCode&); | 274 void startTrackingRepaints(Document*, ExceptionCode&); |
| 275 void stopTrackingRepaints(Document*, ExceptionCode&); | 275 void stopTrackingRepaints(Document*, ExceptionCode&); |
| 276 | 276 |
| 277 PassRefPtr<ArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>) c
onst; | 277 PassRefPtr<ArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>) c
onst; |
| 278 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<ArrayBuffer>)
const; | 278 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<ArrayBuffer>)
const; |
| 279 | 279 |
| 280 void setUsesOverlayScrollbars(bool enabled); | 280 void setUsesOverlayScrollbars(bool enabled); |
| 281 | 281 |
| 282 String getCurrentCursorInfo(Document*, ExceptionCode&); | 282 String getCurrentCursorInfo(Document*, ExceptionCode&); |
| 283 | 283 |
| 284 void forceReload(bool endToEnd); |
| 285 |
| 284 #if ENABLE(ENCRYPTED_MEDIA_V2) | 286 #if ENABLE(ENCRYPTED_MEDIA_V2) |
| 285 void initializeMockCDM(); | 287 void initializeMockCDM(); |
| 286 #endif | 288 #endif |
| 287 | 289 |
| 288 private: | 290 private: |
| 289 explicit Internals(Document*); | 291 explicit Internals(Document*); |
| 290 Document* contextDocument() const; | 292 Document* contextDocument() const; |
| 291 Frame* frame() const; | 293 Frame* frame() const; |
| 292 | 294 |
| 293 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 295 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
| 294 #if ENABLE(INSPECTOR) | 296 #if ENABLE(INSPECTOR) |
| 295 RefPtr<DOMWindow> m_frontendWindow; | 297 RefPtr<DOMWindow> m_frontendWindow; |
| 296 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 298 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
| 297 #endif | 299 #endif |
| 298 }; | 300 }; |
| 299 | 301 |
| 300 } // namespace WebCore | 302 } // namespace WebCore |
| 301 | 303 |
| 302 #endif | 304 #endif |
| OLD | NEW |