| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010, 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 void didCommitProvisionalLoad(WebFrame*); | 284 void didCommitProvisionalLoad(WebFrame*); |
| 285 void didFailProvisionalLoad(WebFrame*); | 285 void didFailProvisionalLoad(WebFrame*); |
| 286 private: | 286 private: |
| 287 RefPtr<SandboxExtension> m_pendingProvisionalSandboxExtension; | 287 RefPtr<SandboxExtension> m_pendingProvisionalSandboxExtension; |
| 288 RefPtr<SandboxExtension> m_provisionalSandboxExtension; | 288 RefPtr<SandboxExtension> m_provisionalSandboxExtension; |
| 289 RefPtr<SandboxExtension> m_committedSandboxExtension; | 289 RefPtr<SandboxExtension> m_committedSandboxExtension; |
| 290 }; | 290 }; |
| 291 | 291 |
| 292 SandboxExtensionTracker& sandboxExtensionTracker() { return m_sandboxExtensi
onTracker; } | 292 SandboxExtensionTracker& sandboxExtensionTracker() { return m_sandboxExtensi
onTracker; } |
| 293 | 293 |
| 294 static void getLocationAndLengthFromRange(WebCore::Range*, uint64_t& locatio
n, uint64_t& length); | |
| 295 | |
| 296 #if PLATFORM(MAC) | 294 #if PLATFORM(MAC) |
| 297 void registerUIProcessAccessibilityTokens(const CoreIPC::DataReference& elem
enToken, const CoreIPC::DataReference& windowToken); | 295 void registerUIProcessAccessibilityTokens(const CoreIPC::DataReference& elem
enToken, const CoreIPC::DataReference& windowToken); |
| 298 AccessibilityWebPageObject* accessibilityRemoteObject(); | 296 AccessibilityWebPageObject* accessibilityRemoteObject(); |
| 299 WebCore::IntPoint accessibilityPosition() const { return m_accessibilityPosi
tion; } | 297 WebCore::IntPoint accessibilityPosition() const { return m_accessibilityPosi
tion; } |
| 300 | 298 |
| 301 void sendComplexTextInputToPlugin(uint64_t pluginComplexTextInputIdentifier,
const String& textInput); | 299 void sendComplexTextInputToPlugin(uint64_t pluginComplexTextInputIdentifier,
const String& textInput); |
| 302 | 300 |
| 303 void getMarkedRange(uint64_t& location, uint64_t& length); | 301 void getMarkedRange(uint64_t& location, uint64_t& length); |
| 304 void characterIndexForPoint(const WebCore::IntPoint point, uint64_t& result)
; | 302 void characterIndexForPoint(const WebCore::IntPoint point, uint64_t& result)
; |
| 305 void firstRectForCharacterRange(uint64_t location, uint64_t length, WebCore:
:IntRect& resultRect); | 303 void firstRectForCharacterRange(uint64_t location, uint64_t length, WebCore:
:IntRect& resultRect); |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 bool m_canRunModal; | 572 bool m_canRunModal; |
| 575 bool m_isRunningModal; | 573 bool m_isRunningModal; |
| 576 | 574 |
| 577 bool m_cachedMainFrameIsPinnedToLeftSide; | 575 bool m_cachedMainFrameIsPinnedToLeftSide; |
| 578 bool m_cachedMainFrameIsPinnedToRightSide; | 576 bool m_cachedMainFrameIsPinnedToRightSide; |
| 579 }; | 577 }; |
| 580 | 578 |
| 581 } // namespace WebKit | 579 } // namespace WebKit |
| 582 | 580 |
| 583 #endif // WebPage_h | 581 #endif // WebPage_h |
| OLD | NEW |