OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "platform/Timer.h" | 44 #include "platform/Timer.h" |
45 #include "public/platform/WebVector.h" | 45 #include "public/platform/WebVector.h" |
46 #include "public/web/WebFindOptions.h" | 46 #include "public/web/WebFindOptions.h" |
47 #include "public/web/WebFrameClient.h" | 47 #include "public/web/WebFrameClient.h" |
48 #include "public/web/WebViewClient.h" | 48 #include "public/web/WebViewClient.h" |
49 #include "web/FindInPageCoordinates.h" | 49 #include "web/FindInPageCoordinates.h" |
50 #include "web/WebLocalFrameImpl.h" | 50 #include "web/WebLocalFrameImpl.h" |
51 #include "web/WebViewImpl.h" | 51 #include "web/WebViewImpl.h" |
52 #include "wtf/CurrentTime.h" | 52 #include "wtf/CurrentTime.h" |
53 | 53 |
54 using namespace WebCore; | 54 using namespace blink; |
55 | 55 |
56 namespace blink { | 56 namespace blink { |
57 | 57 |
58 TextFinder::FindMatch::FindMatch(PassRefPtrWillBeRawPtr<Range> range, int ordina
l) | 58 TextFinder::FindMatch::FindMatch(PassRefPtrWillBeRawPtr<Range> range, int ordina
l) |
59 : m_range(range) | 59 : m_range(range) |
60 , m_ordinal(ordinal) | 60 , m_ordinal(ordinal) |
61 { | 61 { |
62 } | 62 } |
63 | 63 |
64 void TextFinder::FindMatch::trace(WebCore::Visitor* visitor) | 64 void TextFinder::FindMatch::trace(blink::Visitor* visitor) |
65 { | 65 { |
66 visitor->trace(m_range); | 66 visitor->trace(m_range); |
67 } | 67 } |
68 | 68 |
69 class TextFinder::DeferredScopeStringMatches { | 69 class TextFinder::DeferredScopeStringMatches { |
70 public: | 70 public: |
71 DeferredScopeStringMatches(TextFinder* textFinder, int identifier, const Web
String& searchText, const WebFindOptions& options, bool reset) | 71 DeferredScopeStringMatches(TextFinder* textFinder, int identifier, const Web
String& searchText, const WebFindOptions& options, bool reset) |
72 : m_timer(this, &DeferredScopeStringMatches::doTimeout) | 72 : m_timer(this, &DeferredScopeStringMatches::doTimeout) |
73 , m_textFinder(textFinder) | 73 , m_textFinder(textFinder) |
74 , m_identifier(identifier) | 74 , m_identifier(identifier) |
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
730 if (!m_framesScopingCount) | 730 if (!m_framesScopingCount) |
731 m_ownerFrame.increaseMatchCount(0, identifier); | 731 m_ownerFrame.increaseMatchCount(0, identifier); |
732 } | 732 } |
733 | 733 |
734 int TextFinder::ordinalOfFirstMatch() const | 734 int TextFinder::ordinalOfFirstMatch() const |
735 { | 735 { |
736 return ordinalOfFirstMatchForFrame(&m_ownerFrame); | 736 return ordinalOfFirstMatchForFrame(&m_ownerFrame); |
737 } | 737 } |
738 | 738 |
739 } // namespace blink | 739 } // namespace blink |
OLD | NEW |