Lines Matching refs:WebView
186 static HashSet<WebView*> pendingDeleteBackingStoreSet;
190 WebView* kit(Page* page) in kit()
262 if (!WebView::didSetCacheModel() || cacheModel > WebView::cacheModel()) in notifyPreferencesChanged()
263 WebView::setCacheModel(cacheModel); in notifyPreferencesChanged()
264 else if (cacheModel < WebView::cacheModel()) { in notifyPreferencesChanged()
269 … WebView::setCacheModel(max(sharedPreferencesCacheModel, WebView::maxCacheModelInAnyInstance())); in notifyPreferencesChanged()
279 if (cacheModel == WebView::cacheModel()) { in notifyPreferencesRemoved()
284 … WebView::setCacheModel(max(sharedPreferencesCacheModel, WebView::maxCacheModelInAnyInstance())); in notifyPreferencesRemoved()
321 bool WebView::s_allowSiteSpecificHacks = false;
323 WebView::WebView() in WebView() function in WebView
383 WebView::~WebView() in ~WebView()
405 WebView* WebView::createInstance() in createInstance()
407 WebView* instance = new WebView(); in createInstance()
424 static HashSet<WebView*>& allWebViewsSet() in allWebViewsSet()
426 static HashSet<WebView*> allWebViewsSet; in allWebViewsSet()
430 void WebView::addToAllWebViewsSet() in addToAllWebViewsSet()
435 void WebView::removeFromAllWebViewsSet() in removeFromAllWebViewsSet()
440 void WebView::setCacheModel(WebCacheModel cacheModel) in setCacheModel()
621 WebCacheModel WebView::cacheModel() in cacheModel()
626 bool WebView::didSetCacheModel() in didSetCacheModel()
631 WebCacheModel WebView::maxCacheModelInAnyInstance() in maxCacheModelInAnyInstance()
635 HashSet<WebView*>::iterator end = allWebViewsSet().end(); in maxCacheModelInAnyInstance()
636 for (HashSet<WebView*>::iterator it = allWebViewsSet().begin(); it != end; ++it) { in maxCacheModelInAnyInstance()
650 HRESULT STDMETHODCALLTYPE WebView::close() in close()
732 void WebView::repaint(const WebCore::IntRect& windowRect, bool contentChanged, bool immediate, bool… in repaint()
757 void WebView::deleteBackingStore() in deleteBackingStore()
770 bool WebView::ensureBackingStore() in ensureBackingStore()
791 void WebView::addToDirtyRegion(const IntRect& dirtyRect) in addToDirtyRegion()
809 void WebView::addToDirtyRegion(HRGN newRegion) in addToDirtyRegion()
829 void WebView::scrollBackingStore(FrameView* frameView, int dx, int dy, const IntRect& scrollViewRec… in scrollBackingStore()
883 void WebView::sizeChanged(const IntSize& newSize) in sizeChanged()
942 void WebView::updateBackingStore(FrameView* frameView, HDC dc, bool backingStoreCompletelyDirty, Wi… in updateBackingStore()
992 void WebView::paint(HDC dc, LPARAM options) in paint()
1080 void WebView::paintIntoBackingStore(FrameView* frameView, HDC bitmapDC, const IntRect& dirtyRect, W… in paintIntoBackingStore()
1123 void WebView::paintIntoWindow(HDC bitmapDC, HDC windowDC, const IntRect& dirtyRect) in paintIntoWindow()
1144 void WebView::frameRect(RECT* rect) in frameRect()
1151 static WindowCloseTimer* create(WebView*);
1154 WindowCloseTimer(ScriptExecutionContext*, WebView*);
1158 WebView* m_webView;
1161 WindowCloseTimer* WindowCloseTimer::create(WebView* webView) in create()
1177 WindowCloseTimer::WindowCloseTimer(ScriptExecutionContext* context, WebView* webView) in WindowCloseTimer()
1196 void WebView::closeWindowSoon() in closeWindowSoon()
1209 void WebView::closeWindowTimerFired() in closeWindowTimerFired()
1215 void WebView::closeWindow() in closeWindow()
1228 bool WebView::canHandleRequest(const WebCore::ResourceRequest& request) in canHandleRequest()
1245 String WebView::standardUserAgentWithApplicationName(const String& applicationName) in standardUserAgentWithApplicationName()
1253 Page* WebView::page() in page()
1258 bool WebView::handleContextMenuEvent(WPARAM wParam, LPARAM lParam) in handleContextMenuEvent()
1333 bool WebView::onMeasureItem(WPARAM /*wParam*/, LPARAM lParam) in onMeasureItem()
1347 bool WebView::onDrawItem(WPARAM /*wParam*/, LPARAM lParam) in onDrawItem()
1361 bool WebView::onInitMenuPopup(WPARAM wParam, LPARAM /*lParam*/) in onInitMenuPopup()
1379 bool WebView::onUninitMenuPopup(WPARAM wParam, LPARAM /*lParam*/) in onUninitMenuPopup()
1397 void WebView::performContextMenuAction(WPARAM wParam, LPARAM lParam, bool byPosition) in performContextMenuAction()
1408 bool WebView::handleMouseEvent(UINT message, WPARAM wParam, LPARAM lParam) in handleMouseEvent()
1489 bool WebView::gestureNotify(WPARAM wParam, LPARAM lParam) in gestureNotify()
1566 bool WebView::gesture(WPARAM wParam, LPARAM lParam) in gesture()
1661 bool WebView::mouseWheel(WPARAM wParam, LPARAM lParam, bool isMouseHWheel) in mouseWheel()
1700 bool WebView::verticalScroll(WPARAM wParam, LPARAM /*lParam*/) in verticalScroll()
1730 bool WebView::horizontalScroll(WPARAM wParam, LPARAM /*lParam*/) in horizontalScroll()
1760 bool WebView::execCommand(WPARAM wParam, LPARAM /*lParam*/) in execCommand()
1774 bool WebView::keyUp(WPARAM virtualKeyCode, LPARAM keyData, bool systemKeyDown) in keyUp()
1870 const char* WebView::interpretKeyEvent(const KeyboardEvent* evt) in interpretKeyEvent()
1905 bool WebView::handleEditingKeyboardEvent(KeyboardEvent* evt) in handleEditingKeyboardEvent()
1935 bool WebView::keyDown(WPARAM virtualKeyCode, LPARAM keyData, bool systemKeyDown) in keyDown()
2007 bool WebView::keyPress(WPARAM charCode, LPARAM keyData, bool systemKeyDown) in keyPress()
2018 void WebView::setIsBeingDestroyed() in setIsBeingDestroyed()
2027 bool WebView::registerWebViewWindowClass() in registerWebViewWindowClass()
2067 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WebViewWndProc()
2071 WebView* webView = reinterpret_cast<WebView*>(longPtr); in WebViewWndProc()
2081 COMPtr<WebView> protector(webView); in WebViewWndProc()
2340 bool WebView::developerExtrasEnabled() const in developerExtrasEnabled()
2362 const String& WebView::userAgentForKURL(const KURL&) in userAgentForKURL()
2368 m_userAgentStandard = WebView::standardUserAgentWithApplicationName(m_applicationName); in userAgentForKURL()
2374 HRESULT STDMETHODCALLTYPE WebView::QueryInterface(REFIID riid, void** ppvObject) in QueryInterface()
2406 ULONG STDMETHODCALLTYPE WebView::AddRef(void) in AddRef()
2412 ULONG STDMETHODCALLTYPE WebView::Release(void) in Release()
2437 HRESULT STDMETHODCALLTYPE WebView::canShowMIMEType( in canShowMIMEType()
2454 HRESULT STDMETHODCALLTYPE WebView::canShowMIMETypeAsHTML( in canShowMIMETypeAsHTML()
2463 HRESULT STDMETHODCALLTYPE WebView::MIMETypesShownAsHTML( in MIMETypesShownAsHTML()
2470 HRESULT STDMETHODCALLTYPE WebView::setMIMETypesShownAsHTML( in setMIMETypesShownAsHTML()
2478 HRESULT STDMETHODCALLTYPE WebView::URLFromPasteboard( in URLFromPasteboard()
2486 HRESULT STDMETHODCALLTYPE WebView::URLTitleFromPasteboard( in URLTitleFromPasteboard()
2507 bool WebView::shouldInitializeTrackPointHack() in shouldInitializeTrackPointHack()
2535 HRESULT STDMETHODCALLTYPE WebView::initWithFrame( in initWithFrame()
2655 void WebView::initializeToolTipWindow() in initializeToolTipWindow()
2677 void WebView::setToolTip(const String& toolTip) in setToolTip()
2699 HRESULT WebView::notifyDidAddIcon(IWebNotification* notification) in notifyDidAddIcon()
2733 void WebView::registerForIconNotification(bool listen) in registerForIconNotification()
2742 void WebView::dispatchDidReceiveIconFromWebFrame(WebFrame* frame) in dispatchDidReceiveIconFromWebFrame()
2751 HRESULT STDMETHODCALLTYPE WebView::setUIDelegate( in setUIDelegate()
2767 HRESULT STDMETHODCALLTYPE WebView::uiDelegate( in uiDelegate()
2776 HRESULT STDMETHODCALLTYPE WebView::setResourceLoadDelegate( in setResourceLoadDelegate()
2783 HRESULT STDMETHODCALLTYPE WebView::resourceLoadDelegate( in resourceLoadDelegate()
2792 HRESULT STDMETHODCALLTYPE WebView::setDownloadDelegate( in setDownloadDelegate()
2799 HRESULT STDMETHODCALLTYPE WebView::downloadDelegate( in downloadDelegate()
2808 HRESULT STDMETHODCALLTYPE WebView::setFrameLoadDelegate( in setFrameLoadDelegate()
2815 HRESULT STDMETHODCALLTYPE WebView::frameLoadDelegate( in frameLoadDelegate()
2824 HRESULT STDMETHODCALLTYPE WebView::setPolicyDelegate( in setPolicyDelegate()
2831 HRESULT STDMETHODCALLTYPE WebView::policyDelegate( in policyDelegate()
2839 HRESULT STDMETHODCALLTYPE WebView::mainFrame( in mainFrame()
2855 HRESULT STDMETHODCALLTYPE WebView::focusedFrame( in focusedFrame()
2875 HRESULT STDMETHODCALLTYPE WebView::backForwardList( in backForwardList()
2886 HRESULT STDMETHODCALLTYPE WebView::setMaintainsBackForwardList( in setMaintainsBackForwardList()
2893 HRESULT STDMETHODCALLTYPE WebView::goBack( in goBack()
2900 HRESULT STDMETHODCALLTYPE WebView::goForward( in goForward()
2907 HRESULT STDMETHODCALLTYPE WebView::goToBackForwardItem( in goToBackForwardItem()
2924 HRESULT STDMETHODCALLTYPE WebView::setTextSizeMultiplier( in setTextSizeMultiplier()
2933 HRESULT STDMETHODCALLTYPE WebView::setPageSizeMultiplier( in setPageSizeMultiplier()
2942 void WebView::setZoomMultiplier(float multiplier, bool isTextOnly) in setZoomMultiplier()
2955 HRESULT STDMETHODCALLTYPE WebView::textSizeMultiplier( in textSizeMultiplier()
2962 HRESULT STDMETHODCALLTYPE WebView::pageSizeMultiplier( in pageSizeMultiplier()
2969 float WebView::zoomMultiplier(bool isTextOnly) in zoomMultiplier()
2976 HRESULT STDMETHODCALLTYPE WebView::setApplicationNameForUserAgent( in setApplicationNameForUserAgent()
2984 HRESULT STDMETHODCALLTYPE WebView::applicationNameForUserAgent( in applicationNameForUserAgent()
2993 HRESULT STDMETHODCALLTYPE WebView::setCustomUserAgent( in setCustomUserAgent()
3001 HRESULT STDMETHODCALLTYPE WebView::customUserAgent( in customUserAgent()
3013 HRESULT STDMETHODCALLTYPE WebView::userAgentForURL( in userAgentForURL()
3024 HRESULT STDMETHODCALLTYPE WebView::supportsTextEncoding( in supportsTextEncoding()
3031 HRESULT STDMETHODCALLTYPE WebView::setCustomTextEncodingName( in setCustomTextEncodingName()
3051 HRESULT STDMETHODCALLTYPE WebView::customTextEncodingName( in customTextEncodingName()
3085 HRESULT STDMETHODCALLTYPE WebView::setMediaStyle( in setMediaStyle()
3092 HRESULT STDMETHODCALLTYPE WebView::mediaStyle( in mediaStyle()
3099 HRESULT STDMETHODCALLTYPE WebView::stringByEvaluatingJavaScriptFromString( in stringByEvaluatingJavaScriptFromString()
3126 HRESULT STDMETHODCALLTYPE WebView::windowScriptObject( in windowScriptObject()
3133 HRESULT STDMETHODCALLTYPE WebView::setPreferences( in setPreferences()
3171 HRESULT STDMETHODCALLTYPE WebView::preferences( in preferences()
3182 HRESULT STDMETHODCALLTYPE WebView::setPreferencesIdentifier( in setPreferencesIdentifier()
3189 HRESULT STDMETHODCALLTYPE WebView::preferencesIdentifier( in preferencesIdentifier()
3204 void WebView::windowReceivedMessage(HWND, UINT message, WPARAM wParam, LPARAM) in windowReceivedMessage()
3218 void WebView::updateActiveStateSoon() const in updateActiveStateSoon()
3230 void WebView::deleteBackingStoreSoon() in deleteBackingStoreSoon()
3233 Vector<WebView*> views; in deleteBackingStoreSoon()
3234 HashSet<WebView*>::iterator end = pendingDeleteBackingStoreSet.end(); in deleteBackingStoreSoon()
3235 for (HashSet<WebView*>::iterator it = pendingDeleteBackingStoreSet.begin(); it != end; ++it) in deleteBackingStoreSoon()
3247 void WebView::cancelDeleteBackingStoreSoon() in cancelDeleteBackingStoreSoon()
3256 HRESULT STDMETHODCALLTYPE WebView::setHostWindow( in setHostWindow()
3279 HRESULT STDMETHODCALLTYPE WebView::hostWindow( in hostWindow()
3294 HRESULT STDMETHODCALLTYPE WebView::searchFor( in searchFor()
3314 bool WebView::active() in active()
3320 void WebView::updateActiveState() in updateActiveState()
3325 HRESULT STDMETHODCALLTYPE WebView::updateFocusedAndActiveState() in updateFocusedAndActiveState()
3337 HRESULT STDMETHODCALLTYPE WebView::executeCoreCommandByName(BSTR bName, BSTR bValue) in executeCoreCommandByName()
3347 HRESULT STDMETHODCALLTYPE WebView::clearMainFrameName() in clearMainFrameName()
3354 HRESULT STDMETHODCALLTYPE WebView::markAllMatchesForText( in markAllMatchesForText()
3370 HRESULT STDMETHODCALLTYPE WebView::unmarkAllTextMatches() in unmarkAllTextMatches()
3379 HRESULT STDMETHODCALLTYPE WebView::rectsForTextMatches( in rectsForTextMatches()
3404 HRESULT STDMETHODCALLTYPE WebView::generateSelectionImage(BOOL forceWhiteText, OLE_HANDLE* hBitmap) in generateSelectionImage()
3418 HRESULT STDMETHODCALLTYPE WebView::selectionRect(RECT* rc) in selectionRect()
3435 HRESULT STDMETHODCALLTYPE WebView::registerViewClass( in registerViewClass()
3444 HRESULT STDMETHODCALLTYPE WebView::setGroupName( in setGroupName()
3453 HRESULT STDMETHODCALLTYPE WebView::groupName( in groupName()
3466 HRESULT STDMETHODCALLTYPE WebView::estimatedProgress( in estimatedProgress()
3473 HRESULT STDMETHODCALLTYPE WebView::isLoading( in isLoading()
3498 HRESULT STDMETHODCALLTYPE WebView::elementAtPoint( in elementAtPoint()
3521 HRESULT STDMETHODCALLTYPE WebView::pasteboardTypesForSelection( in pasteboardTypesForSelection()
3528 HRESULT STDMETHODCALLTYPE WebView::writeSelectionWithPasteboardTypes( in writeSelectionWithPasteboardTypes()
3537 HRESULT STDMETHODCALLTYPE WebView::pasteboardTypesForElement( in pasteboardTypesForElement()
3545 HRESULT STDMETHODCALLTYPE WebView::writeElement( in writeElement()
3555 HRESULT STDMETHODCALLTYPE WebView::selectedText( in selectedText()
3576 HRESULT STDMETHODCALLTYPE WebView::centerSelectionInVisibleArea( in centerSelectionInVisibleArea()
3588 HRESULT STDMETHODCALLTYPE WebView::moveDragCaretToPoint( in moveDragCaretToPoint()
3595 HRESULT STDMETHODCALLTYPE WebView::removeDragCaret( void) in removeDragCaret()
3601 HRESULT STDMETHODCALLTYPE WebView::setDrawsBackground( in setDrawsBackground()
3608 HRESULT STDMETHODCALLTYPE WebView::drawsBackground( in drawsBackground()
3615 HRESULT STDMETHODCALLTYPE WebView::setMainFrameURL( in setMainFrameURL()
3622 HRESULT STDMETHODCALLTYPE WebView::mainFrameURL( in mainFrameURL()
3653 HRESULT STDMETHODCALLTYPE WebView::mainFrameDocument( in mainFrameDocument()
3663 HRESULT STDMETHODCALLTYPE WebView::mainFrameTitle( in mainFrameTitle()
3670 HRESULT STDMETHODCALLTYPE WebView::mainFrameIcon( in mainFrameIcon()
3677 HRESULT STDMETHODCALLTYPE WebView::registerURLSchemeAsLocal( in registerURLSchemeAsLocal()
3690 HRESULT STDMETHODCALLTYPE WebView::takeStringURLFrom( in takeStringURLFrom()
3697 HRESULT STDMETHODCALLTYPE WebView::stopLoading( in stopLoading()
3706 HRESULT STDMETHODCALLTYPE WebView::reload( in reload()
3715 HRESULT STDMETHODCALLTYPE WebView::canGoBack( in canGoBack()
3723 HRESULT STDMETHODCALLTYPE WebView::goBack( in goBack()
3730 HRESULT STDMETHODCALLTYPE WebView::canGoForward( in canGoForward()
3738 HRESULT STDMETHODCALLTYPE WebView::goForward( in goForward()
3750 HRESULT STDMETHODCALLTYPE WebView::canMakeTextLarger( in canMakeTextLarger()
3759 HRESULT STDMETHODCALLTYPE WebView::canZoomPageIn( in canZoomPageIn()
3768 bool WebView::canZoomIn(bool isTextOnly) in canZoomIn()
3773 HRESULT STDMETHODCALLTYPE WebView::makeTextLarger( in makeTextLarger()
3779 HRESULT STDMETHODCALLTYPE WebView::zoomPageIn( in zoomPageIn()
3785 HRESULT WebView::zoomIn(bool isTextOnly) in zoomIn()
3793 HRESULT STDMETHODCALLTYPE WebView::canMakeTextSmaller( in canMakeTextSmaller()
3802 HRESULT STDMETHODCALLTYPE WebView::canZoomPageOut( in canZoomPageOut()
3811 bool WebView::canZoomOut(bool isTextOnly) in canZoomOut()
3816 HRESULT STDMETHODCALLTYPE WebView::makeTextSmaller( in makeTextSmaller()
3822 HRESULT STDMETHODCALLTYPE WebView::zoomPageOut( in zoomPageOut()
3828 HRESULT WebView::zoomOut(bool isTextOnly) in zoomOut()
3836 HRESULT STDMETHODCALLTYPE WebView::canMakeTextStandardSize( in canMakeTextStandardSize()
3846 HRESULT STDMETHODCALLTYPE WebView::canResetPageZoom( in canResetPageZoom()
3855 bool WebView::canResetZoom(bool isTextOnly) in canResetZoom()
3860 HRESULT STDMETHODCALLTYPE WebView::makeTextStandardSize( in makeTextStandardSize()
3866 HRESULT STDMETHODCALLTYPE WebView::resetPageZoom( in resetPageZoom()
3872 HRESULT WebView::resetZoom(bool isTextOnly) in resetZoom()
3880 HRESULT STDMETHODCALLTYPE WebView::toggleContinuousSpellChecking( in toggleContinuousSpellChecking()
3890 HRESULT STDMETHODCALLTYPE WebView::toggleSmartInsertDelete( in toggleSmartInsertDelete()
3901 HRESULT STDMETHODCALLTYPE WebView::toggleGrammarChecking( in toggleGrammarChecking()
3912 HRESULT STDMETHODCALLTYPE WebView::reloadFromOrigin( in reloadFromOrigin()
3923 HRESULT STDMETHODCALLTYPE WebView::computedStyleForElement( in computedStyleForElement()
3934 HRESULT STDMETHODCALLTYPE WebView::editableDOMRangeForPoint( in editableDOMRangeForPoint()
3942 HRESULT STDMETHODCALLTYPE WebView::setSelectedDOMRange( in setSelectedDOMRange()
3950 HRESULT STDMETHODCALLTYPE WebView::selectedDOMRange( in selectedDOMRange()
3957 HRESULT STDMETHODCALLTYPE WebView::selectionAffinity( in selectionAffinity()
3964 HRESULT STDMETHODCALLTYPE WebView::setEditable( in setEditable()
3971 HRESULT STDMETHODCALLTYPE WebView::isEditable( in isEditable()
3978 HRESULT STDMETHODCALLTYPE WebView::setTypingStyle( in setTypingStyle()
3985 HRESULT STDMETHODCALLTYPE WebView::typingStyle( in typingStyle()
3992 HRESULT STDMETHODCALLTYPE WebView::setSmartInsertDeleteEnabled( in setSmartInsertDeleteEnabled()
4001 HRESULT STDMETHODCALLTYPE WebView::smartInsertDeleteEnabled( in smartInsertDeleteEnabled()
4008 HRESULT STDMETHODCALLTYPE WebView::setSelectTrailingWhitespaceEnabled( in setSelectTrailingWhitespaceEnabled()
4017 HRESULT STDMETHODCALLTYPE WebView::isSelectTrailingWhitespaceEnabled( in isSelectTrailingWhitespaceEnabled()
4024 HRESULT STDMETHODCALLTYPE WebView::setContinuousSpellCheckingEnabled( in setContinuousSpellCheckingEnabled()
4043 HRESULT STDMETHODCALLTYPE WebView::isContinuousSpellCheckingEnabled( in isContinuousSpellCheckingEnabled()
4050 HRESULT STDMETHODCALLTYPE WebView::spellCheckerDocumentTag( in spellCheckerDocumentTag()
4074 void WebView::preflightSpellChecker() in preflightSpellChecker()
4088 bool WebView::continuousCheckingAllowed() in continuousCheckingAllowed()
4104 HRESULT STDMETHODCALLTYPE WebView::undoManager( in undoManager()
4111 HRESULT STDMETHODCALLTYPE WebView::setEditingDelegate( in setEditingDelegate()
4118 HRESULT STDMETHODCALLTYPE WebView::editingDelegate( in editingDelegate()
4134 HRESULT STDMETHODCALLTYPE WebView::styleDeclarationWithText( in styleDeclarationWithText()
4142 HRESULT STDMETHODCALLTYPE WebView::hasSelectedRange( in hasSelectedRange()
4149 HRESULT STDMETHODCALLTYPE WebView::cutEnabled( in cutEnabled()
4157 HRESULT STDMETHODCALLTYPE WebView::copyEnabled( in copyEnabled()
4165 HRESULT STDMETHODCALLTYPE WebView::pasteEnabled( in pasteEnabled()
4173 HRESULT STDMETHODCALLTYPE WebView::deleteEnabled( in deleteEnabled()
4180 HRESULT STDMETHODCALLTYPE WebView::editingEnabled( in editingEnabled()
4187 HRESULT STDMETHODCALLTYPE WebView::isGrammarCheckingEnabled( in isGrammarCheckingEnabled()
4194 HRESULT STDMETHODCALLTYPE WebView::setGrammarCheckingEnabled( in setGrammarCheckingEnabled()
4224 HRESULT STDMETHODCALLTYPE WebView::replaceSelectionWithNode( in replaceSelectionWithNode()
4231 HRESULT STDMETHODCALLTYPE WebView::replaceSelectionWithText( in replaceSelectionWithText()
4241 HRESULT STDMETHODCALLTYPE WebView::replaceSelectionWithMarkupString( in replaceSelectionWithMarkupString()
4248 HRESULT STDMETHODCALLTYPE WebView::replaceSelectionWithArchive( in replaceSelectionWithArchive()
4255 HRESULT STDMETHODCALLTYPE WebView::deleteSelection( void) in deleteSelection()
4262 HRESULT STDMETHODCALLTYPE WebView::clearSelection( void) in clearSelection()
4268 HRESULT STDMETHODCALLTYPE WebView::applyStyle( in applyStyle()
4277 HRESULT STDMETHODCALLTYPE WebView::copy( in copy()
4284 HRESULT STDMETHODCALLTYPE WebView::cut( in cut()
4291 HRESULT STDMETHODCALLTYPE WebView::paste( in paste()
4298 HRESULT STDMETHODCALLTYPE WebView::copyURL( in copyURL()
4306 HRESULT STDMETHODCALLTYPE WebView::copyFont( in copyFont()
4313 HRESULT STDMETHODCALLTYPE WebView::pasteFont( in pasteFont()
4320 HRESULT STDMETHODCALLTYPE WebView::delete_( in delete_()
4327 HRESULT STDMETHODCALLTYPE WebView::pasteAsPlainText( in pasteAsPlainText()
4334 HRESULT STDMETHODCALLTYPE WebView::pasteAsRichText( in pasteAsRichText()
4341 HRESULT STDMETHODCALLTYPE WebView::changeFont( in changeFont()
4348 HRESULT STDMETHODCALLTYPE WebView::changeAttributes( in changeAttributes()
4355 HRESULT STDMETHODCALLTYPE WebView::changeDocumentBackgroundColor( in changeDocumentBackgroundColor()
4362 HRESULT STDMETHODCALLTYPE WebView::changeColor( in changeColor()
4369 HRESULT STDMETHODCALLTYPE WebView::alignCenter( in alignCenter()
4376 HRESULT STDMETHODCALLTYPE WebView::alignJustified( in alignJustified()
4383 HRESULT STDMETHODCALLTYPE WebView::alignLeft( in alignLeft()
4390 HRESULT STDMETHODCALLTYPE WebView::alignRight( in alignRight()
4397 HRESULT STDMETHODCALLTYPE WebView::checkSpelling( in checkSpelling()
4409 HRESULT STDMETHODCALLTYPE WebView::showGuessPanel( in showGuessPanel()
4429 HRESULT STDMETHODCALLTYPE WebView::performFindPanelAction( in performFindPanelAction()
4436 HRESULT STDMETHODCALLTYPE WebView::startSpeaking( in startSpeaking()
4443 HRESULT STDMETHODCALLTYPE WebView::stopSpeaking( in stopSpeaking()
4452 HRESULT STDMETHODCALLTYPE WebView::onNotify( in onNotify()
4472 HRESULT WebView::notifyPreferencesChanged(IWebNotification* notification) in notifyPreferencesChanged()
4830 HRESULT STDMETHODCALLTYPE WebView::MIMETypeForExtension( in MIMETypeForExtension()
4844 HRESULT STDMETHODCALLTYPE WebView::setCustomDropTarget( in setCustomDropTarget()
4855 HRESULT STDMETHODCALLTYPE WebView::removeCustomDropTarget() in removeCustomDropTarget()
4864 HRESULT STDMETHODCALLTYPE WebView::setInViewSourceMode( in setInViewSourceMode()
4873 HRESULT STDMETHODCALLTYPE WebView::inViewSourceMode( in inViewSourceMode()
4882 HRESULT STDMETHODCALLTYPE WebView::viewWindow( in viewWindow()
4889 HRESULT STDMETHODCALLTYPE WebView::setFormDelegate( in setFormDelegate()
4896 HRESULT STDMETHODCALLTYPE WebView::formDelegate( in formDelegate()
4905 HRESULT STDMETHODCALLTYPE WebView::setFrameLoadDelegatePrivate( in setFrameLoadDelegatePrivate()
4912 HRESULT STDMETHODCALLTYPE WebView::frameLoadDelegatePrivate( in frameLoadDelegatePrivate()
4921 HRESULT STDMETHODCALLTYPE WebView::scrollOffset( in scrollOffset()
4932 HRESULT STDMETHODCALLTYPE WebView::scrollBy( in scrollBy()
4941 HRESULT STDMETHODCALLTYPE WebView::visibleContentRect( in visibleContentRect()
4967 DragOperation WebView::keyStateToDragOperation(DWORD grfKeyState) const in keyStateToDragOperation()
4988 HRESULT STDMETHODCALLTYPE WebView::DragEnter( in DragEnter()
5008 HRESULT STDMETHODCALLTYPE WebView::DragOver( in DragOver()
5027 HRESULT STDMETHODCALLTYPE WebView::DragLeave() in DragLeave()
5041 HRESULT STDMETHODCALLTYPE WebView::Drop( in Drop()
5057 HRESULT STDMETHODCALLTYPE WebView::canHandleRequest( in canHandleRequest()
5071 HRESULT STDMETHODCALLTYPE WebView::standardUserAgentWithApplicationName( in standardUserAgentWithApplicationName()
5092 HRESULT STDMETHODCALLTYPE WebView::clearFocusNode() in clearFocusNode()
5099 HRESULT STDMETHODCALLTYPE WebView::setInitialFocus( in setInitialFocus()
5110 HRESULT STDMETHODCALLTYPE WebView::setTabKeyCyclesThroughElements( in setTabKeyCyclesThroughElements()
5119 HRESULT STDMETHODCALLTYPE WebView::tabKeyCyclesThroughElements( in tabKeyCyclesThroughElements()
5131 HRESULT STDMETHODCALLTYPE WebView::setAllowSiteSpecificHacks( in setAllowSiteSpecificHacks()
5140 HRESULT STDMETHODCALLTYPE WebView::addAdditionalPluginDirectory( in addAdditionalPluginDirectory()
5147 HRESULT STDMETHODCALLTYPE WebView::loadBackForwardListFromOtherView( in loadBackForwardListFromOtherView()
5159 COMPtr<WebView> otherWebView; in loadBackForwardListFromOtherView()
5187 HRESULT STDMETHODCALLTYPE WebView::clearUndoRedoOperations() in clearUndoRedoOperations()
5194 HRESULT STDMETHODCALLTYPE WebView::shouldClose( in shouldClose()
5208 HRESULT WebView::registerDragDrop() in registerDragDrop()
5214 HRESULT WebView::revokeDragDrop() in revokeDragDrop()
5222 HRESULT WebView::setProhibitsMainFrameScrolling(BOOL b) in setProhibitsMainFrameScrolling()
5231 HRESULT WebView::setShouldApplyMacFontAscentHack(BOOL b) in setShouldApplyMacFontAscentHack()
5286 HIMC WebView::getIMMContext() in getIMMContext()
5292 void WebView::releaseIMMContext(HIMC hIMC) in releaseIMMContext()
5299 void WebView::prepareCandidateWindow(Frame* targetFrame, HIMC hInputContext) in prepareCandidateWindow()
5320 void WebView::resetIME(Frame* targetFrame) in resetIME()
5331 void WebView::updateSelectionForIME() in updateSelectionForIME()
5346 void WebView::setInputMethodState(bool enabled) in setInputMethodState()
5351 void WebView::selectionChanged() in selectionChanged()
5356 bool WebView::onIMEStartComposition() in onIMEStartComposition()
5492 bool WebView::onIMEComposition(LPARAM lparam) in onIMEComposition()
5537 bool WebView::onIMEEndComposition() in onIMEEndComposition()
5552 bool WebView::onIMEChar(WPARAM wparam, LPARAM lparam) in onIMEChar()
5560 bool WebView::onIMENotify(WPARAM wparam, LPARAM, LRESULT*) in onIMENotify()
5567 LRESULT WebView::onIMERequestCharPosition(Frame* targetFrame, IMECHARPOSITION* charPos) in onIMERequestCharPosition()
5587 LRESULT WebView::onIMERequestReconvertString(Frame* targetFrame, RECONVERTSTRING* reconvertString) in onIMERequestReconvertString()
5605 LRESULT WebView::onIMERequest(WPARAM request, LPARAM data) in onIMERequest()
5622 bool WebView::onIMESelect(WPARAM wparam, LPARAM lparam) in onIMESelect()
5630 bool WebView::onIMESetContext(WPARAM wparam, LPARAM) in onIMESetContext()
5636 HRESULT STDMETHODCALLTYPE WebView::inspector(IWebInspector** inspector) in inspector()
5644 HRESULT STDMETHODCALLTYPE WebView::windowAncestryDidChange() in windowAncestryDidChange()
5671 HRESULT STDMETHODCALLTYPE WebView::paintDocumentRectToContext( in paintDocumentRectToContext()
5684 HRESULT STDMETHODCALLTYPE WebView::paintScrollViewRectToContextAtPoint( in paintScrollViewRectToContextAtPoint()
5698 HRESULT STDMETHODCALLTYPE WebView::reportException( in reportException()
5716 HRESULT STDMETHODCALLTYPE WebView::elementFromJS( in elementFromJS()
5741 HRESULT STDMETHODCALLTYPE WebView::setCustomHTMLTokenizerTimeDelay( in setCustomHTMLTokenizerTimeDelay()
5751 HRESULT STDMETHODCALLTYPE WebView::setCustomHTMLTokenizerChunkSize( in setCustomHTMLTokenizerChunkSize()
5761 HRESULT STDMETHODCALLTYPE WebView::backingStore( in backingStore()
5772 HRESULT STDMETHODCALLTYPE WebView::setTransparent(BOOL transparent) in setTransparent()
5782 HRESULT STDMETHODCALLTYPE WebView::transparent(BOOL* transparent) in transparent()
5791 HRESULT STDMETHODCALLTYPE WebView::setCookieEnabled(BOOL enable) in setCookieEnabled()
5800 HRESULT STDMETHODCALLTYPE WebView::cookieEnabled(BOOL* enabled) in cookieEnabled()
5812 HRESULT STDMETHODCALLTYPE WebView::setMediaVolume(float volume) in setMediaVolume()
5821 HRESULT STDMETHODCALLTYPE WebView::mediaVolume(float* volume) in mediaVolume()
5833 HRESULT STDMETHODCALLTYPE WebView::setDefersCallbacks(BOOL defersCallbacks) in setDefersCallbacks()
5842 HRESULT STDMETHODCALLTYPE WebView::defersCallbacks(BOOL* defersCallbacks) in defersCallbacks()
5854 HRESULT STDMETHODCALLTYPE WebView::globalHistoryItem(IWebHistoryItem** item) in globalHistoryItem()
5871 HRESULT STDMETHODCALLTYPE WebView::setAlwaysUsesComplexTextCodePath(BOOL complex) in setAlwaysUsesComplexTextCodePath()
5878 HRESULT STDMETHODCALLTYPE WebView::alwaysUsesComplexTextCodePath(BOOL* complex) in alwaysUsesComplexTextCodePath()
5887 HRESULT STDMETHODCALLTYPE WebView::registerEmbeddedViewMIMEType(BSTR mimeType) in registerEmbeddedViewMIMEType()
5899 bool WebView::shouldUseEmbeddedView(const WTF::String& mimeType) const in shouldUseEmbeddedView()
5907 bool WebView::onGetObject(WPARAM wParam, LPARAM lParam, LRESULT& lResult) const in onGetObject()
5940 STDMETHODIMP WebView::AccessibleObjectFromWindow(HWND hwnd, DWORD objectID, REFIID riid, void** ppO… in AccessibleObjectFromWindow()
5949 HRESULT WebView::setMemoryCacheDelegateCallsEnabled(BOOL enabled) in setMemoryCacheDelegateCallsEnabled()
5955 HRESULT WebView::setJavaScriptURLsAreAllowed(BOOL areAllowed) in setJavaScriptURLsAreAllowed()
5961 HRESULT WebView::setCanStartPlugins(BOOL canStartPlugins) in setCanStartPlugins()
5977 void WebView::enterFullscreenForNode(Node* node) in enterFullscreenForNode()
6006 void WebView::exitFullscreen() in exitFullscreen()
6026 HRESULT WebView::addUserScriptToGroup(BSTR groupName, IWebScriptWorld* iWorld, BSTR source, BSTR ur… in addUserScriptToGroup()
6052 HRESULT WebView::addUserStyleSheetToGroup(BSTR groupName, IWebScriptWorld* iWorld, BSTR source, BST… in addUserStyleSheetToGroup()
6076 HRESULT WebView::removeUserScriptFromGroup(BSTR groupName, IWebScriptWorld* iWorld, BSTR url) in removeUserScriptFromGroup()
6096 HRESULT WebView::removeUserStyleSheetFromGroup(BSTR groupName, IWebScriptWorld* iWorld, BSTR url) in removeUserStyleSheetFromGroup()
6116 HRESULT WebView::removeUserScriptsFromGroup(BSTR groupName, IWebScriptWorld* iWorld) in removeUserScriptsFromGroup()
6135 HRESULT WebView::removeUserStyleSheetsFromGroup(BSTR groupName, IWebScriptWorld* iWorld) in removeUserStyleSheetsFromGroup()
6154 HRESULT WebView::removeAllUserContentFromGroup(BSTR groupName) in removeAllUserContentFromGroup()
6169 HRESULT WebView::invalidateBackingStore(const RECT* rect) in invalidateBackingStore()
6188 HRESULT WebView::addOriginAccessWhitelistEntry(BSTR sourceOrigin, BSTR destinationProtocol, BSTR de… in addOriginAccessWhitelistEntry()
6194 HRESULT WebView::removeOriginAccessWhitelistEntry(BSTR sourceOrigin, BSTR destinationProtocol, BSTR… in removeOriginAccessWhitelistEntry()
6200 HRESULT WebView::resetOriginAccessWhitelists() in resetOriginAccessWhitelists()
6206 HRESULT WebView::setHistoryDelegate(IWebHistoryDelegate* historyDelegate) in setHistoryDelegate()
6212 HRESULT WebView::historyDelegate(IWebHistoryDelegate** historyDelegate) in historyDelegate()
6220 HRESULT WebView::addVisitedLinks(BSTR* visitedURLs, unsigned visitedURLCount) in addVisitedLinks()
6233 void WebView::downloadURL(const KURL& url) in downloadURL()
6242 void WebView::setRootChildLayer(GraphicsLayer* layer) in setRootChildLayer()
6250 void WebView::flushPendingGraphicsLayerChangesSoon() in flushPendingGraphicsLayerChangesSoon()
6257 void WebView::setAcceleratedCompositing(bool accelerated) in setAcceleratedCompositing()
6300 HRESULT STDMETHODCALLTYPE WebView::setPluginHalterDelegate(IWebPluginHalterDelegate* d) in setPluginHalterDelegate()
6306 HRESULT STDMETHODCALLTYPE WebView::pluginHalterDelegate(IWebPluginHalterDelegate** d) in pluginHalterDelegate()
6338 HRESULT WebView::isNodeHaltedPlugin(IDOMNode* domNode, BOOL* result) in isNodeHaltedPlugin()
6353 HRESULT WebView::restartHaltedPluginForNode(IDOMNode* domNode) in restartHaltedPluginForNode()
6366 HRESULT WebView::hasPluginForNodeBeenHalted(IDOMNode* domNode, BOOL* result) in hasPluginForNodeBeenHalted()
6381 HRESULT WebView::setGeolocationProvider(IWebGeolocationProvider* locationProvider) in setGeolocationProvider()
6387 HRESULT WebView::geolocationProvider(IWebGeolocationProvider** locationProvider) in geolocationProvider()
6398 HRESULT WebView::geolocationDidChangePosition(IWebGeolocationPosition* position) in geolocationDidChangePosition()
6410 HRESULT WebView::geolocationDidFailWithError(IWebError* error) in geolocationDidFailWithError()
6432 HRESULT WebView::setDomainRelaxationForbiddenForURLScheme(BOOL forbidden, BSTR scheme) in setDomainRelaxationForbiddenForURLScheme()
6438 HRESULT WebView::registerURLSchemeAsSecure(BSTR scheme) in registerURLSchemeAsSecure()
6444 HRESULT WebView::nextDisplayIsSynchronous() in nextDisplayIsSynchronous()
6451 void WebView::notifyAnimationStarted(const GraphicsLayer*, double) in notifyAnimationStarted()
6457 void WebView::notifySyncRequired(const GraphicsLayer*) in notifySyncRequired()
6462 void WebView::paintContents(const GraphicsLayer*, GraphicsContext& context, GraphicsLayerPaintingPh… in paintContents()
6474 bool WebView::showDebugBorders() const in showDebugBorders()
6479 bool WebView::showRepaintCounter() const in showRepaintCounter()
6484 void WebView::flushPendingGraphicsLayerChanges() in flushPendingGraphicsLayerChanges()
6583 COMPtr<WebView> webView; in core()
6590 HRESULT WebView::defaultMinimumTimerInterval(double* interval) in defaultMinimumTimerInterval()
6598 HRESULT WebView::setMinimumTimerInterval(double interval) in setMinimumTimerInterval()
6604 void WebView::setGlobalHistoryItem(HistoryItem* historyItem) in setGlobalHistoryItem()