| 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 | 290 |
| 291 String getImageSourceURL(Element*, ExceptionState&); | 291 String getImageSourceURL(Element*, ExceptionState&); |
| 292 | 292 |
| 293 bool isSelectPopupVisible(Node*); | 293 bool isSelectPopupVisible(Node*); |
| 294 | 294 |
| 295 PassRefPtr<ClientRect> selectionBounds(ExceptionState&); | 295 PassRefPtr<ClientRect> selectionBounds(ExceptionState&); |
| 296 String baseURL(Document*, ExceptionState&); | 296 String baseURL(Document*, ExceptionState&); |
| 297 | 297 |
| 298 bool loseSharedGraphicsContext3D(); | 298 bool loseSharedGraphicsContext3D(); |
| 299 | 299 |
| 300 void forceCompositingUpdate(Document*, ExceptionState&); | |
| 301 | |
| 302 private: | 300 private: |
| 303 explicit Internals(Document*); | 301 explicit Internals(Document*); |
| 304 Document* contextDocument() const; | 302 Document* contextDocument() const; |
| 305 Frame* frame() const; | 303 Frame* frame() const; |
| 306 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 304 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
| 307 PassRefPtr<ClientRectList> annotatedRegions(Document*, bool draggable, Excep
tionState&); | 305 PassRefPtr<ClientRectList> annotatedRegions(Document*, bool draggable, Excep
tionState&); |
| 308 | 306 |
| 309 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 307 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 310 RefPtr<DOMWindow> m_frontendWindow; | 308 RefPtr<DOMWindow> m_frontendWindow; |
| 311 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 309 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
| 312 RefPtr<InternalRuntimeFlags> m_runtimeFlags; | 310 RefPtr<InternalRuntimeFlags> m_runtimeFlags; |
| 313 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; | 311 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; |
| 314 RefPtr<InternalProfilers> m_profilers; | 312 RefPtr<InternalProfilers> m_profilers; |
| 315 }; | 313 }; |
| 316 | 314 |
| 317 } // namespace WebCore | 315 } // namespace WebCore |
| 318 | 316 |
| 319 #endif | 317 #endif |
| OLD | NEW |