| 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 #if ENABLE(ENCRYPTED_MEDIA_V2) | 290 #if ENABLE(ENCRYPTED_MEDIA_V2) |
| 291 void initializeMockCDM(); | 291 void initializeMockCDM(); |
| 292 #endif | 292 #endif |
| 293 | 293 |
| 294 void enableMockSpeechSynthesizer(); | 294 void enableMockSpeechSynthesizer(); |
| 295 | 295 |
| 296 String getImageSourceURL(Element*, ExceptionCode&); | 296 String getImageSourceURL(Element*, ExceptionCode&); |
| 297 | 297 |
| 298 bool isSelectPopupVisible(Node*); | 298 bool isSelectPopupVisible(Node*); |
| 299 | 299 |
| 300 bool loseSharedGraphicsContext3D(); |
| 301 |
| 300 private: | 302 private: |
| 301 explicit Internals(Document*); | 303 explicit Internals(Document*); |
| 302 Document* contextDocument() const; | 304 Document* contextDocument() const; |
| 303 Frame* frame() const; | 305 Frame* frame() const; |
| 304 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 306 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
| 305 | 307 |
| 306 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 308 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
| 307 RefPtr<DOMWindow> m_frontendWindow; | 309 RefPtr<DOMWindow> m_frontendWindow; |
| 308 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 310 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
| 309 RefPtr<InternalRuntimeFlags> m_runtimeFlags; | 311 RefPtr<InternalRuntimeFlags> m_runtimeFlags; |
| 310 }; | 312 }; |
| 311 | 313 |
| 312 } // namespace WebCore | 314 } // namespace WebCore |
| 313 | 315 |
| 314 #endif | 316 #endif |
| OLD | NEW |