| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 String markerTextForListItem(Element*, ExceptionCode&); | 275 String markerTextForListItem(Element*, ExceptionCode&); |
| 276 | 276 |
| 277 void forceReload(bool endToEnd); | 277 void forceReload(bool endToEnd); |
| 278 | 278 |
| 279 void enableMockSpeechSynthesizer(); | 279 void enableMockSpeechSynthesizer(); |
| 280 | 280 |
| 281 String getImageSourceURL(Element*, ExceptionCode&); | 281 String getImageSourceURL(Element*, ExceptionCode&); |
| 282 | 282 |
| 283 bool isSelectPopupVisible(Node*); | 283 bool isSelectPopupVisible(Node*); |
| 284 | 284 |
| 285 bool isVibrating(); |
| 286 |
| 285 PassRefPtr<ClientRect> selectionBounds(ExceptionCode&); | 287 PassRefPtr<ClientRect> selectionBounds(ExceptionCode&); |
| 286 String baseURL(Document*, ExceptionCode&); | 288 String baseURL(Document*, ExceptionCode&); |
| 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 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 294 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
| 293 | 295 |
| 294 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); | 296 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionCode&); |
| 295 RefPtr<DOMWindow> m_frontendWindow; | 297 RefPtr<DOMWindow> m_frontendWindow; |
| 296 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 298 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
| 297 RefPtr<InternalRuntimeFlags> m_runtimeFlags; | 299 RefPtr<InternalRuntimeFlags> m_runtimeFlags; |
| 298 RefPtr<InternalProfilers> m_profilers; | 300 RefPtr<InternalProfilers> m_profilers; |
| 299 }; | 301 }; |
| 300 | 302 |
| 301 } // namespace WebCore | 303 } // namespace WebCore |
| 302 | 304 |
| 303 #endif | 305 #endif |
| OLD | NEW |