Changeset 26831 in webkit
- Timestamp:
- Oct 20, 2007, 3:10:04 PM (18 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 added
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r26830 r26831 1 2007-10-20 Alp Toker <alp@atoker.com> 2 3 Reviewed by Eric. 4 5 Support text boundary detection. 6 Move TextBoundariesWin.cpp to platform/ since it's portable and useful. 7 Split out and implement some TemporaryLinkStubs. 8 9 * WebCore.pro: 10 * WebCore.vcproj/WebCore.vcproj: 11 * platform/TextBoundariesICU.cpp: Copied from WebCore/platform/win/TextBoundariesWin.cpp. 12 * platform/gtk/Language.cpp: Added. 13 (WebCore::defaultLanguage): 14 * platform/gtk/TemporaryLinkStubs.cpp: 15 * platform/gtk/TextBreakIteratorInternalICUGtk.cpp: Added. 16 (WebCore::currentTextBreakLocaleID): 17 * platform/win/TextBoundariesWin.cpp: Removed. 18 1 19 2007-10-20 Mark Rowe <mrowe@apple.com> 2 20 -
trunk/WebCore/WebCore.pro
r26824 r26831 912 912 platform/gtk/GlyphPageTreeNodeGtk.cpp \ 913 913 platform/gtk/KeyEventGtk.cpp \ 914 platform/gtk/Language.cpp \ 914 915 platform/gtk/LocalizedStringsGtk.cpp \ 915 916 platform/gtk/LoggingGtk.cpp \ … … 927 928 platform/gtk/SystemTimeLinux.cpp \ 928 929 platform/gtk/TemporaryLinkStubs.cpp \ 930 platform/TextBoundariesICU.cpp \ 931 platform/gtk/TextBreakIteratorInternalICUGtk.cpp \ 929 932 platform/gtk/ThreadingGtk.cpp \ 930 933 platform/gtk/WheelEventGtk.cpp \ -
trunk/WebCore/WebCore.vcproj/WebCore.vcproj
r26801 r26831 3356 3356 </File> 3357 3357 <File 3358 RelativePath="..\platform\TextBoundariesICU.cpp" 3359 > 3360 </File> 3361 <File 3358 3362 RelativePath="..\platform\TextBreakIterator.h" 3359 3363 > … … 3688 3692 <File 3689 3693 RelativePath="..\platform\win\TemporaryLinkStubs.cpp" 3690 >3691 </File>3692 <File3693 RelativePath="..\platform\win\TextBoundariesWin.cpp"3694 3694 > 3695 3695 </File> -
trunk/WebCore/platform/gtk/TemporaryLinkStubs.cpp
r26823 r26831 35 35 #include "FTPDirectoryDocument.h" 36 36 #include "GlobalHistory.h" 37 #include "Language.h"38 37 #include "NotImplemented.h" 39 38 #include "PlugInInfoStore.h" 40 #include "TextBoundaries.h"41 #include "TextBreakIteratorInternalICU.h"42 39 43 40 using namespace WebCore; … … 56 53 } 57 54 58 namespace WebCore {59 class Page;60 }61 62 55 void FrameView::updateBorder() { notImplemented(); } 63 64 int WebCore::findNextWordFromIndex(UChar const*, int, int, bool) { notImplemented(); return 0; }65 void WebCore::findWordBoundary(UChar const* str, int len, int position, int* start, int* end) {*start = position; *end = position; }66 const char* WebCore::currentTextBreakLocaleID() { notImplemented(); return "en_us"; }67 56 68 57 … … 73 62 74 63 bool WebCore::historyContains(DeprecatedString const&) { return false; } 75 76 String WebCore::defaultLanguage() { return "en"; }77 64 78 65 PluginInfo* PlugInInfoStore::createPluginInfoForPluginAtIndex(unsigned) { notImplemented(); return 0;}
Note:
See TracChangeset
for help on using the changeset viewer.