Changeset 175570 in webkit
- Timestamp:
- Nov 4, 2014, 12:35:37 PM (11 years ago)
- Location:
- branches/safari-600.3-branch/Source/WebKit2
- Files:
-
- 4 deleted
- 15 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-600.3-branch/Source/WebKit2/CMakeLists.txt
r175296 r175570 294 294 UIProcess/BackingStore.cpp 295 295 UIProcess/DrawingAreaProxy.cpp 296 UIProcess/FindIndicator.cpp297 296 UIProcess/FrameLoadState.cpp 298 297 UIProcess/GeolocationPermissionRequestManagerProxy.cpp … … 305 304 UIProcess/StatisticsRequest.cpp 306 305 UIProcess/TextCheckerCompletion.cpp 306 UIProcess/TextIndicator.cpp 307 307 UIProcess/VisitedLinkProvider.cpp 308 308 UIProcess/WebApplicationCacheManagerProxy.cpp -
branches/safari-600.3-branch/Source/WebKit2/ChangeLog
r175567 r175570 1 2014-11-04 Dana Burkart <dburkart@apple.com> 2 3 Merge r175476. <rdar://problem/18855190> 4 5 2014-11-03 Tim Horton <timothy_horton@apple.com> 6 7 Rename FindIndicator{Window} to TextIndicator{Window} 8 https://bugs.webkit.org/show_bug.cgi?id=138302 9 <rdar://problem/18855190> 10 11 Reviewed by Anders Carlsson. 12 13 Rename FindIndicator{Window} to TextIndicator{Window} (and related), 14 because it will soon be used to indicate ranges of text that are not 15 necessarily find-in-page results. 16 17 FindController still has things named 'findIndicator' internally, 18 and I left the API alone (because all the API bits are actually find-specific), 19 but the actual FindIndicator/Window and the message to set it up, etc. are all 20 now called Text*. 21 22 * CMakeLists.txt: 23 * UIProcess/API/mac/WKView.mm: 24 * UIProcess/API/mac/WKViewInternal.h: 25 * UIProcess/PageClient.h: 26 * UIProcess/TextIndicator.cpp: Renamed from Source/WebKit2/UIProcess/FindIndicator.cpp. 27 * UIProcess/TextIndicator.h: Renamed from Source/WebKit2/UIProcess/FindIndicator.h. 28 * UIProcess/WebPageProxy.cpp: 29 * UIProcess/WebPageProxy.h: 30 * UIProcess/WebPageProxy.messages.in: 31 * UIProcess/ios/PageClientImplIOS.h: 32 * UIProcess/ios/PageClientImplIOS.mm: 33 * UIProcess/ios/WKContentView.h: 34 * UIProcess/mac/PageClientImpl.h: 35 * UIProcess/mac/PageClientImpl.mm: 36 * UIProcess/mac/TextIndicatorWindow.h: Renamed from Source/WebKit2/UIProcess/mac/FindIndicatorWindow.h. 37 * UIProcess/mac/TextIndicatorWindow.mm: Renamed from Source/WebKit2/UIProcess/mac/FindIndicatorWindow.mm. 38 * WebKit2.xcodeproj/project.pbxproj: 39 * WebProcess/WebPage/FindController.cpp: 40 1 41 2014-11-04 Matthew Hanson <matthew_hanson@apple.com> 2 42 -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/API/mac/WKView.mm
r175567 r175570 41 41 #import "EditingRange.h" 42 42 #import "EditorState.h" 43 #import "FindIndicator.h"44 #import "FindIndicatorWindow.h"45 43 #import "LayerTreeContext.h" 46 44 #import "Logging.h" … … 54 52 #import "TextChecker.h" 55 53 #import "TextCheckerState.h" 54 #import "TextIndicator.h" 55 #import "TextIndicatorWindow.h" 56 56 #import "TiledCoreAnimationDrawingAreaProxy.h" 57 57 #import "ViewGestureController.h" … … 183 183 ValidationMap _validationMap; 184 184 185 std::unique_ptr< FindIndicatorWindow> _findIndicatorWindow;185 std::unique_ptr<TextIndicatorWindow> _textIndicatorWindow; 186 186 187 187 // We keep here the event when resending it to … … 493 493 { 494 494 // Hide the find indicator. 495 _data->_ findIndicatorWindow = nullptr;495 _data->_textIndicatorWindow = nullptr; 496 496 497 497 // Update the view frame. … … 3042 3042 } 3043 3043 3044 - (void)_set FindIndicator:(PassRefPtr<FindIndicator>)findIndicator fadeOut:(BOOL)fadeOut animate:(BOOL)animate3045 { 3046 if (! findIndicator) {3047 _data->_ findIndicatorWindow = nullptr;3048 return; 3049 } 3050 3051 if (!_data->_ findIndicatorWindow)3052 _data->_ findIndicatorWindow = std::make_unique<FindIndicatorWindow>(self);3053 3054 _data->_ findIndicatorWindow->setFindIndicator(findIndicator, fadeOut, animate);3044 - (void)_setTextIndicator:(PassRefPtr<TextIndicator>)textIndicator fadeOut:(BOOL)fadeOut animate:(BOOL)animate 3045 { 3046 if (!textIndicator) { 3047 _data->_textIndicatorWindow = nullptr; 3048 return; 3049 } 3050 3051 if (!_data->_textIndicatorWindow) 3052 _data->_textIndicatorWindow = std::make_unique<TextIndicatorWindow>(self); 3053 3054 _data->_textIndicatorWindow->setTextIndicator(textIndicator, fadeOut, animate); 3055 3055 } 3056 3056 -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/API/mac/WKViewInternal.h
r175567 r175570 47 47 namespace WebKit { 48 48 class DrawingAreaProxy; 49 class FindIndicator;50 49 class LayerTreeContext; 50 class TextIndicator; 51 51 class ViewSnapshot; 52 52 class WebContext; … … 81 81 - (NSRect)_convertToDeviceSpace:(NSRect)rect; 82 82 - (NSRect)_convertToUserSpace:(NSRect)rect; 83 - (void)_set FindIndicator:(PassRefPtr<WebKit::FindIndicator>)findIndicator fadeOut:(BOOL)fadeOut animate:(BOOL)animate;83 - (void)_setTextIndicator:(PassRefPtr<WebKit::TextIndicator>)textIndicator fadeOut:(BOOL)fadeOut animate:(BOOL)animate; 84 84 85 85 - (void)_setAcceleratedCompositingModeRootLayer:(CALayer *)rootLayer; -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/PageClient.h
r175567 r175570 55 55 56 56 class DrawingAreaProxy; 57 class FindIndicator;57 class TextIndicator; 58 58 class NativeWebKeyboardEvent; 59 59 class RemoteLayerTreeTransaction; … … 215 215 #endif 216 216 217 virtual void set FindIndicator(PassRefPtr<FindIndicator>, bool fadeOut, bool animate) = 0;217 virtual void setTextIndicator(PassRefPtr<TextIndicator>, bool fadeOut, bool animate) = 0; 218 218 219 219 virtual void enterAcceleratedCompositingMode(const LayerTreeContext&) = 0; -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/WebPageProxy.cpp
r175567 r175570 42 42 #include "DrawingAreaProxyMessages.h" 43 43 #include "EventDispatcherMessages.h" 44 #include "FindIndicator.h"45 44 #include "Logging.h" 46 45 #include "NativeWebKeyboardEvent.h" … … 56 55 #include "TextChecker.h" 57 56 #include "TextCheckerState.h" 57 #include "TextIndicator.h" 58 58 #include "WKContextPrivate.h" 59 59 #include "WebBackForwardList.h" … … 3549 3549 } 3550 3550 3551 void WebPageProxy::set FindIndicator(const FloatRect& selectionRectInWindowCoordinates, const Vector<FloatRect>& textRectsInSelectionRectCoordinates, float contentImageScaleFactor, const ShareableBitmap::Handle& contentImageHandle, bool fadeOut, bool animate)3552 { 3553 RefPtr< FindIndicator> findIndicator = FindIndicator::create(selectionRectInWindowCoordinates, textRectsInSelectionRectCoordinates, contentImageScaleFactor, contentImageHandle);3554 m_pageClient.set FindIndicator(findIndicator.release(), fadeOut, animate);3551 void WebPageProxy::setTextIndicator(const FloatRect& selectionRectInWindowCoordinates, const Vector<FloatRect>& textRectsInSelectionRectCoordinates, float contentImageScaleFactor, const ShareableBitmap::Handle& contentImageHandle, bool fadeOut, bool animate) 3552 { 3553 RefPtr<TextIndicator> textIndicator = TextIndicator::create(selectionRectInWindowCoordinates, textRectsInSelectionRectCoordinates, contentImageScaleFactor, contentImageHandle); 3554 m_pageClient.setTextIndicator(textIndicator.release(), fadeOut, animate); 3555 3555 } 3556 3556 -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/WebPageProxy.h
r175567 r175570 657 657 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount); 658 658 void didCountStringMatches(const String&, uint32_t matchCount); 659 void set FindIndicator(const WebCore::FloatRect& selectionRectInWindowCoordinates, const Vector<WebCore::FloatRect>& textRectsInSelectionRectCoordinates, float contentImageScaleFactor, const ShareableBitmap::Handle& contentImageHandle, bool fadeOut, bool animate);659 void setTextIndicator(const WebCore::FloatRect& selectionRectInWindowCoordinates, const Vector<WebCore::FloatRect>& textRectsInSelectionRectCoordinates, float contentImageScaleFactor, const ShareableBitmap::Handle& contentImageHandle, bool fadeOut, bool animate); 660 660 void didFindString(const String&, uint32_t matchCount, int32_t matchIndex); 661 661 void didFailToFindString(const String&); -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/WebPageProxy.messages.in
r175567 r175570 224 224 # Find messages 225 225 DidCountStringMatches(String string, uint32_t matchCount) 226 Set FindIndicator(WebCore::FloatRect selectionRect, Vector<WebCore::FloatRect> textRects, float contentImageScaleFactor, WebKit::ShareableBitmap::Handle contentImageHandle, bool fadeOut, bool animate)226 SetTextIndicator(WebCore::FloatRect selectionRect, Vector<WebCore::FloatRect> textRects, float contentImageScaleFactor, WebKit::ShareableBitmap::Handle contentImageHandle, bool fadeOut, bool animate) 227 227 DidFindString(String string, uint32_t matchCount, int32_t matchIndex) 228 228 DidFailToFindString(String string) -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/ios/PageClientImplIOS.h
r175124 r175570 97 97 virtual PassRefPtr<WebPopupMenuProxy> createPopupMenuProxy(WebPageProxy*) override; 98 98 virtual PassRefPtr<WebContextMenuProxy> createContextMenuProxy(WebPageProxy*) override; 99 virtual void set FindIndicator(PassRefPtr<FindIndicator>, bool fadeOut, bool animate) override;99 virtual void setTextIndicator(PassRefPtr<TextIndicator>, bool fadeOut, bool animate) override; 100 100 101 101 virtual void enterAcceleratedCompositingMode(const LayerTreeContext&) override; -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/ios/PageClientImplIOS.mm
r175124 r175570 32 32 #import "DataReference.h" 33 33 #import "DownloadProxy.h" 34 #import "FindIndicator.h"35 34 #import "InteractionInformationAtPosition.h" 36 35 #import "NativeWebKeyboardEvent.h" 37 36 #import "NavigationState.h" 37 #import "TextIndicator.h" 38 38 #import "ViewSnapshotStore.h" 39 39 #import "WKContentView.h" … … 439 439 } 440 440 441 void PageClientImpl::set FindIndicator(PassRefPtr<FindIndicator> findIndicator, bool fadeOut, bool animate)441 void PageClientImpl::setTextIndicator(PassRefPtr<TextIndicator> textIndicator, bool fadeOut, bool animate) 442 442 { 443 443 } -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/ios/WKContentView.h
r171664 r175570 40 40 namespace WebKit { 41 41 class DrawingAreaProxy; 42 class FindIndicator;43 42 class GeolocationPermissionRequestProxy; 44 43 class RemoteLayerTreeTransaction; 44 class TextIndicator; 45 45 class WebContext; 46 46 class WebFrameProxy; -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/mac/PageClientImpl.h
r175567 r175570 43 43 44 44 namespace WebKit { 45 class FindIndicatorWindow;45 class TextIndicatorWindow; 46 46 47 47 class PageClientImpl final : public PageClient … … 121 121 #endif 122 122 123 void set FindIndicator(PassRefPtr<FindIndicator>, bool fadeOut, bool animate);123 void setTextIndicator(PassRefPtr<TextIndicator>, bool fadeOut, bool animate); 124 124 125 125 virtual void enterAcceleratedCompositingMode(const LayerTreeContext&); -
branches/safari-600.3-branch/Source/WebKit2/UIProcess/mac/PageClientImpl.mm
r175567 r175570 34 34 #import "DictionaryPopupInfo.h" 35 35 #import "DownloadProxy.h" 36 #import "FindIndicator.h"37 36 #import "NativeWebKeyboardEvent.h" 38 37 #import "NativeWebWheelEvent.h" 39 38 #import "NavigationState.h" 40 39 #import "StringUtilities.h" 40 #import "TextIndicator.h" 41 41 #import "ViewSnapshotStore.h" 42 42 #import "WKAPICast.h" … … 468 468 #endif 469 469 470 void PageClientImpl::set FindIndicator(PassRefPtr<FindIndicator> findIndicator, bool fadeOut, bool animate)471 { 472 [m_wkView _set FindIndicator:findIndicator fadeOut:fadeOut animate:animate];470 void PageClientImpl::setTextIndicator(PassRefPtr<TextIndicator> textIndicator, bool fadeOut, bool animate) 471 { 472 [m_wkView _setTextIndicator:textIndicator fadeOut:fadeOut animate:animate]; 473 473 } 474 474 -
branches/safari-600.3-branch/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj
r175566 r175570 111 111 0FCB4E5418BBE044000FCFC9 /* WKScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FCB4E4418BBE044000FCFC9 /* WKScrollView.h */; }; 112 112 0FCB4E5518BBE044000FCFC9 /* WKScrollView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FCB4E4518BBE044000FCFC9 /* WKScrollView.mm */; }; 113 0FCB4E6018BBE3D9000FCFC9 /* FindIndicatorWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FCB4E5618BBE3D9000FCFC9 /* FindIndicatorWindow.h */; };114 0FCB4E6118BBE3D9000FCFC9 /* FindIndicatorWindow.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FCB4E5718BBE3D9000FCFC9 /* FindIndicatorWindow.mm */; };113 0FCB4E6018BBE3D9000FCFC9 /* TextIndicatorWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FCB4E5618BBE3D9000FCFC9 /* TextIndicatorWindow.h */; }; 114 0FCB4E6118BBE3D9000FCFC9 /* TextIndicatorWindow.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FCB4E5718BBE3D9000FCFC9 /* TextIndicatorWindow.mm */; }; 115 115 0FCB4E6218BBE3D9000FCFC9 /* PageClientImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FCB4E5818BBE3D9000FCFC9 /* PageClientImpl.h */; }; 116 116 0FCB4E6318BBE3D9000FCFC9 /* PageClientImpl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FCB4E5918BBE3D9000FCFC9 /* PageClientImpl.mm */; }; … … 308 308 1A90C1F41264FD71003E44D4 /* FindController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A90C1F21264FD71003E44D4 /* FindController.h */; }; 309 309 1A90C1F51264FD71003E44D4 /* FindController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A90C1F31264FD71003E44D4 /* FindController.cpp */; }; 310 1A910071126675C4001842F5 /* FindIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A91006F126675C3001842F5 /* FindIndicator.h */; };311 1A910072126675C4001842F5 /* FindIndicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A910070126675C4001842F5 /* FindIndicator.cpp */; };310 1A910071126675C4001842F5 /* TextIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A91006F126675C3001842F5 /* TextIndicator.h */; }; 311 1A910072126675C4001842F5 /* TextIndicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A910070126675C4001842F5 /* TextIndicator.cpp */; }; 312 312 1A92DC1112F8BA460017AF65 /* LayerTreeContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A92DC1012F8BA460017AF65 /* LayerTreeContext.h */; }; 313 313 1A92DC1312F8BAB90017AF65 /* LayerTreeContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A92DC1212F8BAB90017AF65 /* LayerTreeContext.cpp */; }; … … 2062 2062 0FCB4E4418BBE044000FCFC9 /* WKScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WKScrollView.h; path = ios/WKScrollView.h; sourceTree = "<group>"; }; 2063 2063 0FCB4E4518BBE044000FCFC9 /* WKScrollView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = WKScrollView.mm; path = ios/WKScrollView.mm; sourceTree = "<group>"; }; 2064 0FCB4E5618BBE3D9000FCFC9 /* FindIndicatorWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FindIndicatorWindow.h; sourceTree = "<group>"; };2065 0FCB4E5718BBE3D9000FCFC9 /* FindIndicatorWindow.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FindIndicatorWindow.mm; sourceTree = "<group>"; };2064 0FCB4E5618BBE3D9000FCFC9 /* TextIndicatorWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextIndicatorWindow.h; sourceTree = "<group>"; }; 2065 0FCB4E5718BBE3D9000FCFC9 /* TextIndicatorWindow.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TextIndicatorWindow.mm; sourceTree = "<group>"; }; 2066 2066 0FCB4E5818BBE3D9000FCFC9 /* PageClientImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PageClientImpl.h; sourceTree = "<group>"; }; 2067 2067 0FCB4E5918BBE3D9000FCFC9 /* PageClientImpl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PageClientImpl.mm; sourceTree = "<group>"; }; … … 2284 2284 1A90C1F21264FD71003E44D4 /* FindController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FindController.h; sourceTree = "<group>"; }; 2285 2285 1A90C1F31264FD71003E44D4 /* FindController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FindController.cpp; sourceTree = "<group>"; }; 2286 1A91006F126675C3001842F5 /* FindIndicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FindIndicator.h; sourceTree = "<group>"; };2287 1A910070126675C4001842F5 /* FindIndicator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FindIndicator.cpp; sourceTree = "<group>"; };2286 1A91006F126675C3001842F5 /* TextIndicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextIndicator.h; sourceTree = "<group>"; }; 2287 1A910070126675C4001842F5 /* TextIndicator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TextIndicator.cpp; sourceTree = "<group>"; }; 2288 2288 1A92DC1012F8BA460017AF65 /* LayerTreeContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LayerTreeContext.h; sourceTree = "<group>"; }; 2289 2289 1A92DC1212F8BAB90017AF65 /* LayerTreeContext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LayerTreeContext.cpp; sourceTree = "<group>"; }; … … 5799 5799 BC2652131182608100243E12 /* DrawingAreaProxy.h */, 5800 5800 1A6422FC12DD08FE00CAAE2C /* DrawingAreaProxy.messages.in */, 5801 1A910070126675C4001842F5 /* FindIndicator.cpp */,5801 1A910070126675C4001842F5 /* TextIndicator.cpp */, 5802 5802 1AE00D5E1831792100087DD7 /* FrameLoadState.cpp */, 5803 5803 1AE00D5F1831792100087DD7 /* FrameLoadState.h */, 5804 1A91006F126675C3001842F5 /* FindIndicator.h */,5804 1A91006F126675C3001842F5 /* TextIndicator.h */, 5805 5805 BC17753E118BABF0007D9E9A /* GenericCallback.h */, 5806 5806 BC06F44912DBD1F5002D78DE /* GeolocationPermissionRequestManagerProxy.cpp */, … … 6606 6606 B878B613133428DC006888E9 /* CorrectionPanel.h */, 6607 6607 B878B614133428DC006888E9 /* CorrectionPanel.mm */, 6608 0FCB4E5618BBE3D9000FCFC9 /* FindIndicatorWindow.h */,6609 0FCB4E5718BBE3D9000FCFC9 /* FindIndicatorWindow.mm */,6608 0FCB4E5618BBE3D9000FCFC9 /* TextIndicatorWindow.h */, 6609 0FCB4E5718BBE3D9000FCFC9 /* TextIndicatorWindow.mm */, 6610 6610 1AFDE65B1954E8D500C48FFA /* LegacySessionStateCoding.cpp */, 6611 6611 0FCB4E5818BBE3D9000FCFC9 /* PageClientImpl.h */, … … 7182 7182 1AA575FB1496B52600A4EE06 /* EventDispatcher.h in Headers */, 7183 7183 1A90C1F41264FD71003E44D4 /* FindController.h in Headers */, 7184 1A910071126675C4001842F5 /* FindIndicator.h in Headers */,7184 1A910071126675C4001842F5 /* TextIndicator.h in Headers */, 7185 7185 515E7728183DD6F60007203F /* AsyncRequest.h in Headers */, 7186 7186 BCE81D8D1319F7EF00241910 /* FontInfo.h in Headers */, … … 7231 7231 BC33E0D112408E8600360F3F /* InjectedBundleRangeHandle.h in Headers */, 7232 7232 A115DC72191D82DA00DA8072 /* _WKWebViewPrintFormatter.h in Headers */, 7233 0FCB4E6018BBE3D9000FCFC9 /* FindIndicatorWindow.h in Headers */,7233 0FCB4E6018BBE3D9000FCFC9 /* TextIndicatorWindow.h in Headers */, 7234 7234 BC14DF77120B5B7900826C0C /* InjectedBundleScriptWorld.h in Headers */, 7235 7235 BCB0B0DE12305A8C00B1341E /* InjectedBundleUserMessageCoders.h in Headers */, … … 8858 8858 1A1E093318861D3800D2DC49 /* WebProgressTrackerClient.cpp in Sources */, 8859 8859 1A90C1F51264FD71003E44D4 /* FindController.cpp in Sources */, 8860 1A910072126675C4001842F5 /* FindIndicator.cpp in Sources */,8860 1A910072126675C4001842F5 /* TextIndicator.cpp in Sources */, 8861 8861 BCE81D8C1319F7EF00241910 /* FontInfo.cpp in Sources */, 8862 8862 378E1A4918208CD60031007A /* WKNSString.mm in Sources */, … … 9360 9360 BCBAACF51452324F0053F82F /* WKBrowsingContextGroup.mm in Sources */, 9361 9361 51290992183ACEAF005522A6 /* WebIDBServerConnection.cpp in Sources */, 9362 0FCB4E6118BBE3D9000FCFC9 /* FindIndicatorWindow.mm in Sources */,9362 0FCB4E6118BBE3D9000FCFC9 /* TextIndicatorWindow.mm in Sources */, 9363 9363 BC204EEE11C83EC8008F3375 /* WKBundle.cpp in Sources */, 9364 9364 7C6E70FB18B2DC7A00F24E2E /* WebProcessCocoa.mm in Sources */, -
branches/safari-600.3-branch/Source/WebKit2/WebProcess/WebPage/FindController.cpp
r175296 r175570 369 369 } 370 370 371 m_webPage->send(Messages::WebPageProxy::Set FindIndicator(selectionRectInWindowCoordinates, textRectsInSelectionRectCoordinates, m_webPage->corePage()->deviceScaleFactor(), handle, !isShowingOverlay, shouldAnimate));371 m_webPage->send(Messages::WebPageProxy::SetTextIndicator(selectionRectInWindowCoordinates, textRectsInSelectionRectCoordinates, m_webPage->corePage()->deviceScaleFactor(), handle, !isShowingOverlay, shouldAnimate)); 372 372 m_findIndicatorRect = selectionRectInWindowCoordinates; 373 373 m_isShowingFindIndicator = true; … … 382 382 383 383 ShareableBitmap::Handle handle; 384 m_webPage->send(Messages::WebPageProxy::Set FindIndicator(FloatRect(), Vector<FloatRect>(), m_webPage->corePage()->deviceScaleFactor(), handle, false, true));384 m_webPage->send(Messages::WebPageProxy::SetTextIndicator(FloatRect(), Vector<FloatRect>(), m_webPage->corePage()->deviceScaleFactor(), handle, false, true)); 385 385 m_isShowingFindIndicator = false; 386 386 m_foundStringMatchIndex = -1;
Note:
See TracChangeset
for help on using the changeset viewer.