ChangeLog 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  1. 2013-05-19 Anders Carlsson <andersca@apple.com>
  2. Remove ChromeClient::webView()
  3. https://bugs.webkit.org/show_bug.cgi?id=116054
  4. Reviewed by Darin Adler.
  5. This blatantly horrible layer violation was only used to know if a ChromeClient is an empty
  6. client or not. We already have a (slightly less horrible) way to do that.
  7. * WebCoreSupport/ChromeClientWinCE.h:
  8. (ChromeClientWinCE):
  9. 2013-05-13 Anders Carlsson <andersca@apple.com>
  10. Frame::editor() should return a reference
  11. https://bugs.webkit.org/show_bug.cgi?id=116037
  12. Reviewed by Darin Adler.
  13. * WebCoreSupport/EditorClientWinCE.cpp:
  14. (WebKit::EditorClientWinCE::handleEditingKeyboardEvent):
  15. 2013-04-29 Patrick Gansterer <paroga@webkit.org>
  16. Unreviewed build fix.
  17. * WebCoreSupport/FrameLoaderClientWinCE.cpp: Added missing header.
  18. * WebView.h: Ditto.
  19. 2013-04-25 Joseph Pecoraro <pecoraro@apple.com>
  20. Web Inspector: ConsoleMessage should include line and column number where possible
  21. https://bugs.webkit.org/show_bug.cgi?id=114929
  22. Reviewed by Timothy Hatcher.
  23. * WebCoreSupport/ChromeClientWinCE.cpp:
  24. (WebKit::ChromeClientWinCE::addMessageToConsole):
  25. * WebCoreSupport/ChromeClientWinCE.h:
  26. 2013-04-18 Patrick Gansterer <paroga@webkit.org>
  27. Unreviewed WinCE build fix after r148545.
  28. * WebCoreSupport/EditorClientWinCE.cpp:
  29. * WebView.cpp:
  30. 2013-04-15 Patrick Gansterer <paroga@webkit.org>
  31. Unreviewed WinCE build fix after r148373.
  32. * WebCoreSupport/EditorClientWinCE.cpp:
  33. 2013-04-06 Patrick Gansterer <paroga@webkit.org>
  34. Unreviewed WinCE build fix after r145849.
  35. * WebCoreSupport/EditorClientWinCE.cpp:
  36. 2013-03-15 Nate Chapin <japhet@chromium.org>
  37. Hide MainResourceLoader from the outside world
  38. https://bugs.webkit.org/show_bug.cgi?id=109971
  39. Reviewed by Adam Barth.
  40. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  41. (WebKit::FrameLoaderClientWinCE::convertMainResourceLoadToDownload):
  42. * WebCoreSupport/FrameLoaderClientWinCE.h:
  43. (FrameLoaderClientWinCE):
  44. 2013-03-15 Abhishek Arya <inferno@chromium.org>
  45. Replace static_casts with to* helper functions.
  46. https://bugs.webkit.org/show_bug.cgi?id=112401
  47. Reviewed by Stephen Chenney.
  48. to* helper functions are preferred over static_cast calls since they
  49. help to catch bad casts easily on the testing infrastructure.
  50. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  51. (WebKit::FrameLoaderClientWinCE::redirectDataToPlugin):
  52. 2013-03-14 Manuel Rego Casasnovas <rego@igalia.com>
  53. Add selectTrailingWhitespaceEnabled setting to WebCore::Page
  54. https://bugs.webkit.org/show_bug.cgi?id=109404
  55. Reviewed by Tony Chang.
  56. Use new settings for smartInsertDeleteEnabled and
  57. selectTrailingWhitespaceEnabled.
  58. * WebCoreSupport/EditorClientWinCE.cpp:
  59. (WebKit::EditorClientWinCE::smartInsertDeleteEnabled):
  60. (WebKit::EditorClientWinCE::isSelectTrailingWhitespaceEnabled):
  61. 2013-02-11 Ryosuke Niwa <rniwa@webkit.org>
  62. Disable delete button controller on non-Mac ports and delete EditorClient::shouldShowDeleteInterface
  63. https://bugs.webkit.org/show_bug.cgi?id=109534
  64. Reviewed by Anders Carlsson.
  65. * WebCoreSupport/EditorClientWinCE.cpp:
  66. (WebKit):
  67. * WebCoreSupport/EditorClientWinCE.h:
  68. (EditorClientWinCE):
  69. 2013-02-03 KwangYong Choi <ky0.choi@samsung.com>
  70. Fix build warning after r141473
  71. https://bugs.webkit.org/show_bug.cgi?id=108782
  72. Reviewed by Kentaro Hara.
  73. Fix -Wunused-parameter build warning.
  74. * WebCoreSupport/EditorClientWinCE.cpp:
  75. (WebKit::EditorClientWinCE::getClientPasteboardDataForRange):
  76. 2013-01-31 Enrica Casucci <enrica@apple.com>
  77. WebKit2: provide new bundle APIs to allow bundle clients to be notified of pasteboard access.
  78. https://bugs.webkit.org/show_bug.cgi?id=108396.
  79. <rdar://problem/12920461>
  80. Reviewed by Alexey Proskuryakov.
  81. Adds stub implementation for WebKit of the new EditorClient methods.
  82. * WebCoreSupport/EditorClientWinCE.cpp:
  83. (WebKit::EditorClientWinCE::willWriteSelectionToPasteboard):
  84. (WebKit::EditorClientWinCE::getClientPasteboardDataForRange):
  85. * WebCoreSupport/EditorClientWinCE.h:
  86. 2013-01-24 Patrick Gansterer <paroga@webkit.org>
  87. Unreviewed WinCE build fix after r139078.
  88. * WebCoreSupport/ChromeClientWinCE.h:
  89. (ChromeClientWinCE):
  90. 2013-01-22 Anders Carlsson <andersca@apple.com>
  91. Use a platforom strategy for local storage
  92. https://bugs.webkit.org/show_bug.cgi?id=107600
  93. Reviewed by Andreas Kling.
  94. Update for new storage strategy.
  95. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  96. (PlatformStrategiesWinCE::createStorageStrategy):
  97. * WebCoreSupport/PlatformStrategiesWinCE.h:
  98. (PlatformStrategiesWinCE):
  99. 2013-01-18 Seokju Kwon <seokju.kwon@gmail.com>
  100. Add explicit keyword to constructors in platform-specific InspectorClient
  101. https://bugs.webkit.org/show_bug.cgi?id=107255
  102. Reviewed by Kentaro Hara.
  103. Add explicit keyword to constructors that take one argument
  104. in platform-specific implementation of InspectorClient.
  105. And fix some coding style.
  106. * WebCoreSupport/InspectorClientWinCE.h:
  107. (InspectorClientWinCE):
  108. 2013-01-08 Mark Lam <mark.lam@apple.com>
  109. Removed the need for the ProposedDatabase mechanism.
  110. https://bugs.webkit.org/show_bug.cgi?id=106292.
  111. Reviewed by Sam Weinig.
  112. * WebCoreSupport/ChromeClientWinCE.cpp:
  113. (WebKit::ChromeClientWinCE::exceededDatabaseQuota):
  114. * WebCoreSupport/ChromeClientWinCE.h:
  115. (ChromeClientWinCE):
  116. 2012-12-23 Alexey Proskuryakov <ap@apple.com>
  117. <rdar://problem/12808377> Network process should respect cookie accept policy
  118. https://bugs.webkit.org/show_bug.cgi?id=105684
  119. Reviewed by Sam Weinig.
  120. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  121. * WebCoreSupport/PlatformStrategiesWinCE.h:
  122. CookiesStrategy no longer has notifyCookiesChanged(). This port didn't use it anyway.
  123. 2012-12-22 Alexey Proskuryakov <ap@apple.com>
  124. Add a separate class for networking related storage
  125. https://bugs.webkit.org/show_bug.cgi?id=105676
  126. Reviewed by Sam Weinig.
  127. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  128. (PlatformStrategiesWinCE::cookiesForDOM):
  129. (PlatformStrategiesWinCE::setCookiesFromDOM):
  130. (PlatformStrategiesWinCE::cookiesEnabled):
  131. (PlatformStrategiesWinCE::cookieRequestHeaderFieldValue):
  132. (PlatformStrategiesWinCE::getRawCookies):
  133. (PlatformStrategiesWinCE::deleteCookie):
  134. * WebCoreSupport/PlatformStrategiesWinCE.h:
  135. Cookie functions now take a NetworkStorageSession, not a NetworkingContext.
  136. 2012-12-18 Alexey Proskuryakov <ap@apple.com>
  137. Remove unnecessary functions from CookiesStrategy
  138. https://bugs.webkit.org/show_bug.cgi?id=105369
  139. Reviewed by Brady Eidson.
  140. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  141. * WebCoreSupport/PlatformStrategiesWinCE.h:
  142. 2012-12-15 Anders Carlsson <andersca@apple.com>
  143. Rename FrameLoaderClient::download to convertMainResourceLoadToDownload
  144. https://bugs.webkit.org/show_bug.cgi?id=105122
  145. Reviewed by Andreas Kling.
  146. Update for WebCore changes.
  147. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  148. (WebKit::FrameLoaderClientWinCE::convertMainResourceLoadToDownload):
  149. * WebCoreSupport/FrameLoaderClientWinCE.h:
  150. (FrameLoaderClientWinCE):
  151. 2012-12-15 Mark Lam <mark.lam@apple.com>
  152. Re-landing patch for "Introducing the DatabaseStrategy and database servers".
  153. https://bugs.webkit.org/show_bug.cgi?id=104934.
  154. Not reviewed.
  155. Merged from r137767. Previously reviewed by Sam Weinig.
  156. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  157. (PlatformStrategiesWinCE::createDatabaseStrategy):
  158. * WebCoreSupport/PlatformStrategiesWinCE.h:
  159. (PlatformStrategiesWinCE):
  160. 2012-12-14 Sheriff Bot <webkit.review.bot@gmail.com>
  161. Unreviewed, rolling out r137767.
  162. http://trac.webkit.org/changeset/137767
  163. https://bugs.webkit.org/show_bug.cgi?id=105062
  164. Broke Mac builds. (Requested by mlam on #webkit).
  165. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  166. * WebCoreSupport/PlatformStrategiesWinCE.h:
  167. (PlatformStrategiesWinCE):
  168. 2012-12-14 Mark Lam <mark.lam@apple.com>
  169. Introducing the DatabaseStrategy and database servers.
  170. https://bugs.webkit.org/show_bug.cgi?id=104934.
  171. Reviewed by Sam Weinig.
  172. The database server is currently a placeholder that does nothing.
  173. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  174. (PlatformStrategiesWinCE::createDatabaseStrategy):
  175. * WebCoreSupport/PlatformStrategiesWinCE.h:
  176. (PlatformStrategiesWinCE):
  177. 2012-12-11 Mike West <mkwst@chromium.org>
  178. Web Inspector: ConsoleTypes should not expose MessageType - it should be private to inspector.
  179. https://bugs.webkit.org/show_bug.cgi?id=66371
  180. Reviewed by Pavel Feldman.
  181. Drops WebCore::MessageType from the addMessageToConsole method.
  182. * WebCoreSupport/ChromeClientWinCE.cpp:
  183. (WebKit::ChromeClientWinCE::addMessageToConsole):
  184. * WebCoreSupport/ChromeClientWinCE.h:
  185. (ChromeClientWinCE):
  186. 2012-11-29 Alexey Proskuryakov <ap@apple.com>
  187. [WK2] Forward cookie jar calls to NetworkProcess
  188. https://bugs.webkit.org/show_bug.cgi?id=103457
  189. Reviewed by Darin Adler.
  190. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  191. (PlatformStrategiesWinCE::cookiesForDOM):
  192. (PlatformStrategiesWinCE::setCookiesFromDOM):
  193. (PlatformStrategiesWinCE::cookiesEnabled):
  194. (PlatformStrategiesWinCE::cookieRequestHeaderFieldValue):
  195. (PlatformStrategiesWinCE::getRawCookies):
  196. (PlatformStrategiesWinCE::deleteCookie):
  197. (PlatformStrategiesWinCE::getHostnamesWithCookies):
  198. (PlatformStrategiesWinCE::deleteCookiesForHostname):
  199. (PlatformStrategiesWinCE::deleteAllCookies):
  200. 2012-11-27 James Simonsen <simonjam@chromium.org>
  201. Consolidate FrameLoader::load() into one function taking a FrameLoadRequest
  202. https://bugs.webkit.org/show_bug.cgi?id=102151
  203. Reviewed by Adam Barth.
  204. * WebView.cpp:
  205. (WebView::load):
  206. 2012-11-27 Sheriff Bot <webkit.review.bot@gmail.com>
  207. Unreviewed, rolling out r135786.
  208. http://trac.webkit.org/changeset/135786
  209. https://bugs.webkit.org/show_bug.cgi?id=103379
  210. It made 3 plugin tests timeout on several platforms (Requested
  211. by Ossy on #webkit).
  212. * WebView.cpp:
  213. (WebView::load):
  214. 2012-11-26 James Simonsen <simonjam@chromium.org>
  215. Consolidate FrameLoader::load() into one function taking a FrameLoadRequest
  216. https://bugs.webkit.org/show_bug.cgi?id=102151
  217. Reviewed by Adam Barth.
  218. * WebView.cpp:
  219. (WebView::load):
  220. 2012-11-20 Sheriff Bot <webkit.review.bot@gmail.com>
  221. Unreviewed, rolling out r135295.
  222. http://trac.webkit.org/changeset/135295
  223. https://bugs.webkit.org/show_bug.cgi?id=102834
  224. This patch causes assertion to some layout tests on chromium
  225. (Requested by jianli on #webkit).
  226. * WebView.cpp:
  227. (WebView::load):
  228. 2012-11-20 James Simonsen <simonjam@chromium.org>
  229. Consolidate FrameLoader::load() into one function taking a FrameLoadRequest
  230. https://bugs.webkit.org/show_bug.cgi?id=102151
  231. Reviewed by Adam Barth.
  232. * WebView.cpp:
  233. (WebView::load):
  234. 2012-10-24 Brady Eidson <beidson@apple.com>
  235. Add a strategy for loader customization.
  236. https://bugs.webkit.org/show_bug.cgi?id=100278
  237. Reviewed by Alexey Proskuryakov.
  238. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  239. (PlatformStrategiesWinCE::createLoaderStrategy):
  240. * WebCoreSupport/PlatformStrategiesWinCE.h:
  241. (PlatformStrategiesWinCE):
  242. 2012-10-23 Alexey Proskuryakov <ap@apple.com>
  243. Add a strategy for shared workers
  244. https://bugs.webkit.org/show_bug.cgi?id=100165
  245. Reviewed by Brady Eidson.
  246. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  247. (PlatformStrategiesWinCE::createPasteboardStrategy):
  248. (PlatformStrategiesWinCE::createSharedWorkerStrategy):
  249. (PlatformStrategiesWinCE::createVisitedLinkStrategy):
  250. * WebCoreSupport/PlatformStrategiesWinCE.h:
  251. 2012-10-10 Jon Lee <jonlee@apple.com>
  252. [WK2] Activate plugins when user clicks on snapshot
  253. https://bugs.webkit.org/show_bug.cgi?id=98328
  254. <rdar://problem/12426681>
  255. Reviewed by Brady Eidson.
  256. * WebCoreSupport/FrameLoaderClientWinCE.h:
  257. (WebKit::FrameLoaderClientWinCE::recreatePlugin): Stub implementation of recreatePlugin().
  258. 2012-10-07 Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>
  259. Rename first/second to key/value in HashMap iterators
  260. https://bugs.webkit.org/show_bug.cgi?id=82784
  261. Reviewed by Eric Seidel.
  262. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  263. (PlatformStrategiesWinCE::getPluginInfo):
  264. 2012-10-04 Simon Fraser <simon.fraser@apple.com>
  265. Standardize on "flush" terminology for compositing layer flushing/syncing
  266. https://bugs.webkit.org/show_bug.cgi?id=98321
  267. Reviewed by Simon Fraser.
  268. Rename compositing-related methods that refer to "syncing" to instead
  269. refer to "flushing".
  270. * WebCoreSupport/ChromeClientWinCE.cpp:
  271. (WebKit::ChromeClientWinCE::scheduleCompositingLayerFlush):
  272. * WebCoreSupport/ChromeClientWinCE.h:
  273. (ChromeClientWinCE):
  274. 2012-09-28 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com>
  275. Code inside FrameLoaderClient::canShowMIMEType() implementations can be shared among different WK ports
  276. https://bugs.webkit.org/show_bug.cgi?id=97547
  277. Reviewed by Adam Barth.
  278. Newly added WebCore::MIMETypeRegistry::canShowMIMEType() function is used
  279. inside WebKit::FrameLoaderClientWinCE::canShowMIMEType().
  280. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  281. (WebKit::FrameLoaderClientWinCE::canShowMIMEType):
  282. 2012-09-25 Beth Dakin <bdakin@apple.com>
  283. https://bugs.webkit.org/show_bug.cgi?id=95397
  284. Need to merge didFirstVisuallyNonEmptyLayout and
  285. didNewFirstVisuallyNonEmptyLayout
  286. -and corresponding-
  287. <rdar://problem/10791680>
  288. Reviewed by Sam Weinig.
  289. Remove dispatchDidFirstLayout,
  290. dispatchDidFirstVisuallyNonEmptyLayout, and
  291. dispatchDidNewFirstVisuallyNonEmptyLayout. Their functionality
  292. is now replaced by dispatchDidLayout(LayoutMilestones)
  293. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  294. (WebKit::FrameLoaderClientWinCE::dispatchDidLayout):
  295. * WebCoreSupport/FrameLoaderClientWinCE.h:
  296. (FrameLoaderClientWinCE):
  297. 2012-08-28 Sheriff Bot <webkit.review.bot@gmail.com>
  298. Unreviewed, rolling out r126914.
  299. http://trac.webkit.org/changeset/126914
  300. https://bugs.webkit.org/show_bug.cgi?id=95239
  301. it breaks everything and fixes nothing (Requested by pizlo on
  302. #webkit).
  303. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  304. (PlatformStrategiesWinCE::getPluginInfo):
  305. 2012-08-28 Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>
  306. Rename first/second to key/value in HashMap iterators
  307. https://bugs.webkit.org/show_bug.cgi?id=82784
  308. Reviewed by Eric Seidel.
  309. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  310. (PlatformStrategiesWinCE::getPluginInfo):
  311. 2012-08-27 Sheriff Bot <webkit.review.bot@gmail.com>
  312. Unreviewed, rolling out r126836.
  313. http://trac.webkit.org/changeset/126836
  314. https://bugs.webkit.org/show_bug.cgi?id=95163
  315. Broke all Apple ports, EFL, and Qt. (Requested by tkent on
  316. #webkit).
  317. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  318. (PlatformStrategiesWinCE::getPluginInfo):
  319. 2012-08-27 Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>
  320. Rename first/second to key/value in HashMap iterators
  321. https://bugs.webkit.org/show_bug.cgi?id=82784
  322. Reviewed by Eric Seidel.
  323. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  324. (PlatformStrategiesWinCE::getPluginInfo):
  325. 2012-08-13 Tom Sepez <tsepez@chromium.org>
  326. [chromium] release FrameLoaderClientImpl::m_pluginWidget refptr upon Plugin Document detach.
  327. https://bugs.webkit.org/show_bug.cgi?id=93283
  328. Reviewed by Eric Seidel.
  329. Change the client redirectDataToPlugin method(s) to expect the possibility of
  330. a NULL argument, keeping existing behaviour otherwise.
  331. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  332. (WebKit::FrameLoaderClientWinCE::redirectDataToPlugin):
  333. 2012-07-23 Pierre Rossi <pierre.rossi@gmail.com>
  334. Unify numTouchEventHandlersChanged and needTouchEvents in the chrome client
  335. https://bugs.webkit.org/show_bug.cgi?id=91006
  336. Reviewed by Ryosuke Niwa.
  337. Remove numTouchEventHandlersChanged stub.
  338. * WebCoreSupport/ChromeClientWinCE.h:
  339. 2012-07-17 Vivek Galatage <vivekgalatage@gmail.com>
  340. Web Inspector: refactor InspectorController::connectFrontend() to accept InspectorFrontendChannel.
  341. https://bugs.webkit.org/show_bug.cgi?id=91196
  342. Reviewed by Pavel Feldman.
  343. Refactoring InspectorClients. InspectorClient::openInspectorFrontend
  344. now returning the InspectorFrontendChannel.
  345. * WebCoreSupport/InspectorClientWinCE.cpp:
  346. (WebKit::InspectorClientWinCE::openInspectorFrontend):
  347. * WebCoreSupport/InspectorClientWinCE.h:
  348. (InspectorClientWinCE):
  349. 2012-05-31 Hajime Morrita <morrita@chromium.org>
  350. REGRESSION(r117572): editing/spelling/spellcheck-async-remove-frame.html crashes on Mac
  351. https://bugs.webkit.org/show_bug.cgi?id=86859
  352. Reviewed by Ryosuke Niwa.
  353. * WebCoreSupport/EditorClientWinCE.h:
  354. (WebKit::EditorClientWinCE::requestCheckingOfString):
  355. 2012-05-30 Patrick Gansterer <paroga@webkit.org>
  356. Unreviewed WinCE build fix after r115926.
  357. * WebView.cpp:
  358. 2012-05-30 Patrick Gansterer <paroga@webkit.org>
  359. Unreviewed WinCE build fix after r117470.
  360. * WebCoreSupport/EditorClientWinCE.h:
  361. (EditorClientWinCE):
  362. 2012-05-18 MORITA Hajime <morrita@google.com>
  363. Another unreviewed attempt to fix build breakage on r117572.
  364. * WebCoreSupport/EditorClientWinCE.h:
  365. (WebKit::EditorClientWinCE::frameWillDetachPage):
  366. 2012-05-18 MORITA Hajime <morrita@google.com>
  367. https://bugs.webkit.org/show_bug.cgi?id=85515
  368. Stale frame in WebCore::SpellChecker::didCheckSucceeded
  369. Reviewed by Ryosuke Niwa.
  370. * WebCoreSupport/EditorClientWinCE.h:
  371. (WebKit::EditorClientWinCE::frameWillDetachPage):
  372. 2012-05-17 Hironori Bono <hbono@chromium.org>
  373. [Refactoring] Move platform-specific code in Editor::respondToChangedSelection to the WebKit layer
  374. https://bugs.webkit.org/show_bug.cgi?id=86591
  375. Reviewed by Ryosuke Niwa.
  376. This change adds a TextCheckerClient::shouldEraseMarkersAfterChangeSelection
  377. function to remove platform-specific code from Editor::respondToChangedSelection
  378. function.
  379. No new tests, no change in behavior.
  380. * WebCoreSupport/EditorClientWinCE.cpp:
  381. (WebKit::EditorClientWinCE::shouldEraseMarkersAfterChangeSelection):
  382. (WebKit):
  383. * WebCoreSupport/EditorClientWinCE.h:
  384. (EditorClientWinCE):
  385. 2012-05-04 Nate Chapin <japhet@chromium.org>
  386. Don't require FrameLoaderClient to manufacture a commitData() call for empty documents.
  387. https://bugs.webkit.org/show_bug.cgi?id=85533
  388. Reviewed by Alexey Proskuryakov.
  389. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  390. (WebKit::FrameLoaderClientWinCE::finishedLoading):
  391. 2012-04-18 Jon Honeycutt <jhoneycutt@apple.com>
  392. FrameLoaderClient::dispatchWillSendSubmitEvent() should be given more
  393. information about the form being submitted
  394. https://bugs.webkit.org/show_bug.cgi?id=84297
  395. Reviewed by Andy Estes.
  396. * WebCoreSupport/FrameLoaderClientWinCE.h:
  397. (WebKit::FrameLoaderClientWinCE::dispatchWillSendSubmitEvent):
  398. Updated method declaration.
  399. 2012-03-30 Patrick Gansterer <paroga@webkit.org>
  400. [WinCE] Correct <wtf/*.h> include paths.
  401. https://bugs.webkit.org/show_bug.cgi?id=82713
  402. Reviewed by Eric Seidel.
  403. Modify the #include declarations for several WinCE-related files
  404. so that the wtf types are included using the full path.
  405. * WebView.cpp:
  406. * WebView.h:
  407. 2012-03-28 Nate Chapin <japhet@chromium.org>
  408. Remove dispatchDidLoadMainResource callback, since no
  409. port implements it.
  410. https://bugs.webkit.org/show_bug.cgi?id=82539
  411. Reviewed by Alexey Proskuryakov.
  412. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  413. (WebKit):
  414. * WebCoreSupport/FrameLoaderClientWinCE.h:
  415. (FrameLoaderClientWinCE):
  416. 2012-03-19 Adam Barth <abarth@webkit.org>
  417. Remove support for "magic" iframe
  418. https://bugs.webkit.org/show_bug.cgi?id=81590
  419. Reviewed by Eric Seidel.
  420. Remove FrameLoaderClient methods that no longer exist.
  421. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  422. (WebKit):
  423. * WebCoreSupport/FrameLoaderClientWinCE.h:
  424. (FrameLoaderClientWinCE):
  425. 2012-03-13 Jon Lee <jonlee@apple.com>
  426. Separate NOTIFICATIONS and LEGACY_NOTIFICATIONS
  427. https://bugs.webkit.org/show_bug.cgi?id=80922
  428. <rdar://problem/11035082>
  429. Reviewed by Jian Li.
  430. You can include either NOTIFICATIONS or LEGACY_NOTIFICATIONS and have a complete API.
  431. LEGACY_NOTIFICATIONS should cover all of the previous functionality, and NOTIFICATIONS will cover the
  432. new API. Therefore, APIs that are common between the two will have:
  433. #if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
  434. This patch initially sets both to be exactly the same. As other bugs with patches begin to migrate to
  435. the new API, the defines will begin to split. This allows ports to decide which set of APIs to include.
  436. Update everything to be #if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
  437. * WebCoreSupport/ChromeClientWinCE.h:
  438. (ChromeClientWinCE):
  439. 2012-03-13 Adam Barth <abarth@webkit.org> && Benjamin Poulain <bpoulain@apple.com>
  440. Always enable ENABLE(CLIENT_BASED_GEOLOCATION)
  441. https://bugs.webkit.org/show_bug.cgi?id=78853
  442. Reviewed by Adam Barth.
  443. * WebCoreSupport/ChromeClientWinCE.cpp:
  444. * WebCoreSupport/ChromeClientWinCE.h:
  445. (ChromeClientWinCE):
  446. 2012-03-09 Jon Lee <jonlee@apple.com>
  447. Rename NotificationPresenter to NotificationClient
  448. https://bugs.webkit.org/show_bug.cgi?id=80488
  449. <rdar://problem/10965558>
  450. Reviewed by Kentaro Hara.
  451. Refactor to use renamed WebCore::NotificationClient.
  452. * WebCoreSupport/ChromeClientWinCE.h:
  453. (ChromeClientWinCE):
  454. 2012-02-26 Hajime Morrita <morrita@chromium.org>
  455. Move ChromeClient::showContextMenu() to ContextMenuClient
  456. https://bugs.webkit.org/show_bug.cgi?id=79427
  457. Reviewed by Adam Barth.
  458. * WebCoreSupport/ChromeClientWinCE.h:
  459. (ChromeClientWinCE):
  460. 2012-02-24 Shinya Kawanaka <shinyak@chromium.org>
  461. SpellCheckRequest needs to know the context where the spellcheck happened.
  462. https://bugs.webkit.org/show_bug.cgi?id=79320
  463. Reviewed by Hajime Morita.
  464. * WebCoreSupport/EditorClientWinCE.h:
  465. (WebKit::EditorClientWinCE::requestCheckingOfString):
  466. 2012-02-23 Patrick Gansterer <paroga@webkit.org>
  467. Unreviewed WinCE build fix after r108462.
  468. * WebCoreSupport/EditorClientWinCE.h:
  469. (EditorClientWinCE):
  470. 2012-02-21 Ryosuke Niwa <rniwa@webkit.org>
  471. Remove the remaining uses of CSSStyleDeclaration in Editor
  472. https://bugs.webkit.org/show_bug.cgi?id=78939
  473. Reviewed by Enrica Casucci.
  474. * WebCoreSupport/EditorClientWinCE.cpp:
  475. (WebKit::EditorClientWinCE::shouldApplyStyle):
  476. 2012-02-22 Ryosuke Niwa <rniwa@webkit.org>
  477. Remove the remaining uses of CSSStyleDeclaration in Editor
  478. https://bugs.webkit.org/show_bug.cgi?id=78939
  479. Reviewed by Enrica Casucci.
  480. * WebCoreSupport/EditorClientWinCE.cpp:
  481. (WebKit::EditorClientWinCE::shouldApplyStyle):
  482. 2012-02-20 Benjamin Poulain <benjamin@webkit.org>
  483. Get rid of the LocalizationStrategy
  484. https://bugs.webkit.org/show_bug.cgi?id=78324
  485. Reviewed by Sam Weinig.
  486. Remove a useless #include of LocalizationStrategy.h.
  487. * WebCoreSupport/PlatformStrategiesWinCE.h:
  488. 2012-02-15 Patrick Gansterer <paroga@webkit.org>
  489. Unreviewed WinCE build fix after r107606.
  490. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  491. (PlatformStrategiesWinCE::createPasteboardStrategy):
  492. * WebCoreSupport/PlatformStrategiesWinCE.h:
  493. (PlatformStrategiesWinCE):
  494. 2012-02-15 Sadrul Habib Chowdhury <sadrul@chromium.org>
  495. Notify ChromeClient when touch-event handlers are installed/removed.
  496. https://bugs.webkit.org/show_bug.cgi?id=77440
  497. Reviewed by Darin Fisher and Ryosuke Niwa.
  498. * WebCoreSupport/ChromeClientWinCE.h:
  499. (WebKit::ChromeClientWinCE::numTouchEventHandlersChanged):
  500. 2011-12-19 Sam Weinig <sam@webkit.org>
  501. More PlatformEvent cleanup
  502. https://bugs.webkit.org/show_bug.cgi?id=74831
  503. Reviewed by Dan Bernstein.
  504. * WebView.cpp:
  505. (WebView::handleMouseEvent):
  506. Update to use new names, access style.
  507. 2011-12-16 Ryosuke Niwa <rniwa@webkit.org>
  508. Rename registerCommandFor(Undo|Redo) to register(Undo|Redo)Step
  509. https://bugs.webkit.org/show_bug.cgi?id=74748
  510. Reviewed by Eric Seidel.
  511. * WebCoreSupport/EditorClientWinCE.cpp:
  512. (WebKit::EditorClientWinCE::registerUndoStep):
  513. (WebKit::EditorClientWinCE::registerRedoStep):
  514. * WebCoreSupport/EditorClientWinCE.h:
  515. 2011-12-16 Sam Weinig <sam@webkit.org>
  516. Give PlatformEvents a base class
  517. https://bugs.webkit.org/show_bug.cgi?id=74685
  518. Reviewed by Anders Carlsson.
  519. Add a base class for PlatformMouseEvent, PlatformKeyboardEvent, PlatformWheelEvent
  520. and PlatformGestureEvent and move Type enumeration and modifiers down to it.
  521. * WebCoreSupport/EditorClientWinCE.cpp:
  522. (WebKit::EditorClientWinCE::handleEditingKeyboardEvent):
  523. * WebView.cpp:
  524. (WebView::handleKeyDown):
  525. (WebView::handleKeyPress):
  526. (WebView::handleKeyUp):
  527. 2011-12-16 Ryosuke Niwa <rniwa@webkit.org>
  528. Only EditCommandComposition should implement unapply and reapply
  529. https://bugs.webkit.org/show_bug.cgi?id=74490
  530. Reviewed by Eric Seidel.
  531. * WebCoreSupport/EditorClientWinCE.cpp:
  532. (WebKit::EditorClientWinCE::registerCommandForUndo):
  533. (WebKit::EditorClientWinCE::registerCommandForRedo):
  534. * WebCoreSupport/EditorClientWinCE.h:
  535. 2011-12-14 Jing Zhao <jingzhao@chromium.org>
  536. Opening two popup menus by dispatchEvent() makes problems.
  537. https://bugs.webkit.org/show_bug.cgi?id=73304
  538. Reviewed by Ryosuke Niwa.
  539. * WebCoreSupport/ChromeClientWinCE.cpp:
  540. (WebKit::ChromeClientWinCE::hasOpenedPopup): Not implemented.
  541. * WebCoreSupport/ChromeClientWinCE.h: Overrides hasOpenedPopup().
  542. 2011-11-30 Alexey Proskuryakov <ap@apple.com>
  543. Remove an unneeded argument from FrameLoaderClient::download
  544. https://bugs.webkit.org/show_bug.cgi?id=73486
  545. Reviewed by Andreas Kling.
  546. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  547. (WebKit::FrameLoaderClientWinCE::download):
  548. * WebCoreSupport/FrameLoaderClientWinCE.h:
  549. Updated for the change.
  550. 2011-11-26 Sheriff Bot <webkit.review.bot@gmail.com>
  551. Unreviewed, rolling out r101193.
  552. http://trac.webkit.org/changeset/101193
  553. https://bugs.webkit.org/show_bug.cgi?id=73158
  554. Breaks Windows and Qt minimal. (Requested by pfeldman on
  555. #webkit).
  556. * WebCoreSupport/InspectorClientWinCE.cpp:
  557. * WebCoreSupport/InspectorClientWinCE.h:
  558. 2011-11-22 Pavel Feldman <pfeldman@google.com>
  559. Web Inspector: remove Inspector::bringToFront from the protocol.
  560. https://bugs.webkit.org/show_bug.cgi?id=72937
  561. Reviewed by Yury Semikhatsky.
  562. * WebCoreSupport/InspectorClientWinCE.cpp:
  563. (WebKit::InspectorClientWinCE::bringFrontendToFront):
  564. * WebCoreSupport/InspectorClientWinCE.h:
  565. 2011-11-21 Andreas Kling <kling@webkit.org>
  566. Unreviewed WinCE build fix after r100874.
  567. * WebCoreSupport/EditorClientWinCE.h:
  568. * WebCoreSupport/EditorClientWinCE.cpp:
  569. (WebKit::EditorClientWinCE::respondToChangedSelection):
  570. Add WebCore::Frame* parameter to respondToChangedSelection().
  571. 2011-11-15 Anders Carlsson <andersca@apple.com>
  572. HostWindow screenToWindow/windowToScreen should be screenToRootView/rootViewToScreen
  573. https://bugs.webkit.org/show_bug.cgi?id=72397
  574. Reviewed by Dan Bernstein.
  575. * WebCoreSupport/ChromeClientWinCE.cpp:
  576. (WebKit::ChromeClientWinCE::rootViewToScreen):
  577. (WebKit::ChromeClientWinCE::screenToRootView):
  578. * WebCoreSupport/ChromeClientWinCE.h:
  579. 2011-11-14 Anders Carlsson <andersca@apple.com>
  580. HostWindow invalidation functions should use root view coordinates
  581. https://bugs.webkit.org/show_bug.cgi?id=72338
  582. Reviewed by Dan Bernstein.
  583. * WebCoreSupport/ChromeClientWinCE.cpp:
  584. (WebKit::ChromeClientWinCE::invalidateRootView):
  585. (WebKit::ChromeClientWinCE::invalidateContentsAndRootView):
  586. (WebKit::ChromeClientWinCE::invalidateContentsForSlowScroll):
  587. (WebKit::ChromeClientWinCE::scroll):
  588. * WebCoreSupport/ChromeClientWinCE.h:
  589. 2011-11-04 Patrick Gansterer <paroga@webkit.org>
  590. [WINCE] Use default LocalizationStrategy
  591. https://bugs.webkit.org/show_bug.cgi?id=71495
  592. Reviewed by Adam Roben.
  593. Use LocalizationStrategy from WebCore instead of using a copy of the strings in WebKit.
  594. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  595. * WebCoreSupport/PlatformStrategiesWinCE.h:
  596. 2011-11-02 Tom Sepez <tsepez@chromium.org>
  597. XSSAuditor is silent
  598. https://bugs.webkit.org/show_bug.cgi?id=70973
  599. Reviewed by Adam Barth.
  600. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  601. (WebKit::FrameLoaderClientWinCE::didDetectXSS):
  602. * WebCoreSupport/FrameLoaderClientWinCE.h:
  603. 2011-11-02 Jon Lee <jonlee@apple.com>
  604. <input=file multiple> default text uses singular instead of plural
  605. https://bugs.webkit.org/show_bug.cgi?id=71319
  606. <rdar://problem/10379021>
  607. Reviewed by Darin Adler.
  608. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  609. (PlatformStrategiesWinCE::fileButtonNoFilesSelectedLabel):
  610. * WebCoreSupport/PlatformStrategiesWinCE.h:
  611. 2011-10-28 Jochen Eisinger <jochen@chromium.org>
  612. Rename a number of methods mentioning JavaScript to just Script instead
  613. https://bugs.webkit.org/show_bug.cgi?id=71105
  614. Reviewed by Adam Barth.
  615. * WebView.cpp:
  616. (WebView::WebView):
  617. 2011-10-07 Patrick Gansterer <paroga@webkit.org>
  618. Unreviewed build fix after r95604.
  619. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  620. (PlatformStrategiesWinCE::isLinkVisited):
  621. (PlatformStrategiesWinCE::addVisitedLink):
  622. 2011-09-24 Adam Barth <abarth@webkit.org>
  623. Always enable ENABLE(OFFLINE_WEB_APPLICATIONS)
  624. https://bugs.webkit.org/show_bug.cgi?id=68767
  625. Reviewed by Eric Seidel.
  626. * WebCoreSupport/ChromeClientWinCE.cpp:
  627. (WebKit::ChromeClientWinCE::reachedApplicationCacheOriginQuota):
  628. * WebCoreSupport/ChromeClientWinCE.h:
  629. 2011-09-21 Andras Becsi <andras.becsi@nokia.com>
  630. [Qt] Remove Qt specific code from css/SelectorChecker.cpp
  631. https://bugs.webkit.org/show_bug.cgi?id=67702
  632. Reviewed by Csaba Osztrogonác.
  633. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  634. (PlatformStrategiesWinCE::addVisitedLink):
  635. * WebCoreSupport/PlatformStrategiesWinCE.h:
  636. 2011-09-17 Mihai Parparita <mihaip@chromium.org>
  637. FrameLoaderClient BackForwardList-related methods are unsued
  638. https://bugs.webkit.org/show_bug.cgi?id=68293
  639. Reviewed by Darin Adler.
  640. Remove FrameLoaderClient methods that were added by r51629, since only
  641. the old (since-deleted) Android port needed them.
  642. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  643. * WebCoreSupport/FrameLoaderClientWinCE.h:
  644. 2011-09-15 Adam Barth <abarth@webkit.org>
  645. Rename ENABLE(DATABASE) to ENABLE(SQL_DATABASE)
  646. https://bugs.webkit.org/show_bug.cgi?id=68205
  647. Reviewed by Eric Seidel.
  648. * WebCoreSupport/ChromeClientWinCE.cpp:
  649. * WebCoreSupport/ChromeClientWinCE.h:
  650. 2011-08-30 Ryosuke Niwa <rniwa@webkit.org>
  651. WinCE build fix attempt after r94080.
  652. * WebCoreSupport/ChromeClientWinCE.cpp:
  653. (WebKit::ChromeClientWinCE::scrollRectIntoView):
  654. 2011-08-30 Kaustubh Atrawalkar <kaustubh@motorola.com>
  655. The unused ScrollView* argument can and should be removed from
  656. scrollRectIntoView.
  657. https://bugs.webkit.org/show_bug.cgi?id=67117
  658. Reviewed by Darin Adler.
  659. * WebCoreSupport/ChromeClientWinCE.h:
  660. 2011-08-17 Adam Roben <aroben@apple.com>
  661. Make WebCore keep track of the current device scale factor
  662. Fixes <http://webkit.org/b/66413> WebCore requires every WebKit port to keep track of the
  663. device scale factor
  664. Reviewed by Darin Adler.
  665. * WebCoreSupport/ChromeClientWinCE.cpp:
  666. * WebCoreSupport/ChromeClientWinCE.h:
  667. Removed deviceScaleFactor.
  668. 2011-08-15 Dmitry Titov <dimich@chromium.org>
  669. FrameLoaderClient::transferLoadingResourceFromPage does not have enough parameters
  670. https://bugs.webkit.org/show_bug.cgi?id=66165
  671. Reviewed by Darin Fisher.
  672. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  673. (WebKit::FrameLoaderClientWinCE::transferLoadingResourceFromPage):
  674. * WebCoreSupport/FrameLoaderClientWinCE.h:
  675. 2011-08-10 Adam Roben <aroben@apple.com>
  676. Clear up scale factor terminology
  677. WebKit by and large deals with two scale factors: one intrinsic to the device on which the
  678. software is running, and one that is per-Page and can be controlled via API calls. This
  679. patch names the former "deviceScaleFactor" and the latter "pageScaleFactor", and makes the
  680. code use those names. It should introduce no behavior changes.
  681. Fixes <http://webkit.org/b/55787> WebKit uses multiple conflicting names to refer to the
  682. device scale factor
  683. Reviewed by Simon Fraser.
  684. * WebCoreSupport/ChromeClientWinCE.cpp:
  685. * WebCoreSupport/ChromeClientWinCE.h:
  686. 2011-08-03 Pavel Feldman <pfeldman@chromium.org>
  687. Web Inspector: remove Node parameter from the InspectorClient::highlight
  688. https://bugs.webkit.org/show_bug.cgi?id=65549
  689. Reviewed by Yury Semikhatsky.
  690. * WebCoreSupport/InspectorClientWinCE.cpp:
  691. (WebKit::InspectorClientWinCE::highlight):
  692. * WebCoreSupport/InspectorClientWinCE.h:
  693. 2011-07-26 Sadrul Habib Chowdhury <sadrul@chromium.org>
  694. Add support for download='filename' attribute in anchors.
  695. https://bugs.webkit.org/show_bug.cgi?id=64580
  696. Reviewed by Adam Barth.
  697. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  698. (WebKit::FrameLoaderClientWinCE::startDownload):
  699. * WebCoreSupport/FrameLoaderClientWinCE.h:
  700. 2011-07-15 Dan Bernstein <mitz@apple.com>
  701. REGRESSION: Mouse cursor doesn’t hide when full screen video HUD hides
  702. https://bugs.webkit.org/show_bug.cgi?id=64615
  703. Reviewed by Anders Carlsson.
  704. * WebCoreSupport/ChromeClientWinCE.cpp:
  705. (WebKit::ChromeClientWinCE::setCursorHiddenUntilMouseMoves): Added this stub.
  706. * WebCoreSupport/ChromeClientWinCE.h:
  707. 2011-07-12 Joseph Pecoraro <joepeck@webkit.org>
  708. ApplicationCache update should not immediately fail when reaching per-origin quota
  709. https://bugs.webkit.org/show_bug.cgi?id=64177
  710. Reviewed by Alexey Proskuryakov.
  711. * WebCoreSupport/ChromeClientWinCE.cpp:
  712. (WebKit::ChromeClientWinCE::reachedApplicationCacheOriginQuota):
  713. * WebCoreSupport/ChromeClientWinCE.h:
  714. 2011-06-30 Kentaro Hara <haraken@google.com>
  715. Reviewed by Kent Tamura.
  716. Change the label of an HTML5 file chooser button to "Choose Files"
  717. https://bugs.webkit.org/show_bug.cgi?id=49245
  718. We should notify capability of multiple files to users.
  719. Test: fast/forms/input-file-label.html
  720. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  721. (PlatformStrategiesWinCE::fileButtonChooseFileLabel): Updated the description for "Choose File".
  722. (PlatformStrategiesWinCE::fileButtonChooseMultipleFilesLabel): Returns a "Choose Files" label.
  723. * WebCoreSupport/PlatformStrategiesWinCE.h:
  724. 2011-06-20 Ryosuke Niwa <rniwa@webkit.org>
  725. WinCE build fix after r89293.
  726. * WebCoreSupport/EditorClientWinCE.cpp:
  727. (WebKit::EditorClientWinCE::handleEditingKeyboardEvent):
  728. 2011-06-18 Dimitri Glazkov <dglazkov@chromium.org>
  729. Reviewed by Darin Adler.
  730. Separate concerns of loading file icons and choosing files.
  731. https://bugs.webkit.org/show_bug.cgi?id=62931
  732. * WebCoreSupport/ChromeClientWinCE.cpp:
  733. (WebKit::ChromeClientWinCE::loadIconForFiles): Renamed.
  734. * WebCoreSupport/ChromeClientWinCE.h:
  735. 2011-06-12 Adam Barth <abarth@webkit.org>
  736. Reviewed by Alexey Proskuryakov.
  737. Rename FrameLoaderClient::interruptForPolicyChangeError to use the past tense
  738. https://bugs.webkit.org/show_bug.cgi?id=62516
  739. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  740. (WebKit::FrameLoaderClientWinCE::interruptedForPolicyChangeError):
  741. * WebCoreSupport/FrameLoaderClientWinCE.h:
  742. 2011-05-13 Jon Lee <jonlee@apple.com>
  743. Reviewed by Simon Fraser.
  744. Can't horizontally scroll iframes and overflow because wheel events are always accepted
  745. https://bugs.webkit.org/show_bug.cgi?id=60779
  746. * WebCoreSupport/ChromeClientWinCE.h:
  747. (WebKit::ChromeClientWinCE::shouldRubberBandInDirection): Default impl of new ChromeClient method
  748. (WebKit::ChromeClientWinCE::numWheelEventHandlersChanged): Default impl of new ChromeClient method
  749. 2011-05-05 Ryosuke Niwa <rniwa@webkit.org>
  750. Reviewed by Eric Seidel.
  751. Rename SelectionController to FrameSelection
  752. https://bugs.webkit.org/show_bug.cgi?id=60234
  753. * WebCoreSupport/EditorClientWinCE.cpp:
  754. (WebKit::EditorClientWinCE::handleEditingKeyboardEvent):
  755. 2011-05-04 Cris Neckar <cdn@chromium.org>
  756. Reviewed by Adam Barth.
  757. Expose WebView directly through ChromeClient.
  758. https://bugs.webkit.org/show_bug.cgi?id=49902
  759. * WebCoreSupport/ChromeClientWinCE.h:
  760. (WebKit::ChromeClientWinCE::webView):
  761. 2011-05-04 Tao Bai <michaelbai@chromium.org>
  762. Reviewed by David Kilzer.
  763. Populate touch-icon url to FrameLoaderClient
  764. https://bugs.webkit.org/show_bug.cgi?id=59143
  765. Respect the interface change in FrameLoaderClient.
  766. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  767. (WebKit::FrameLoaderClientWinCE::dispatchDidChangeIcons):
  768. * WebCoreSupport/FrameLoaderClientWinCE.h:
  769. 2011-05-01 Patrick Gansterer <paroga@webkit.org>
  770. [WIN] Unreviewed buildfix after r85434.
  771. * WebView.cpp:
  772. (WebView::paint):
  773. 2011-04-21 Ryosuke Niwa <rniwa@webkit.org>
  774. WinCE build fix after r84574.
  775. * WebCoreSupport/EditorClientWinCE.cpp:
  776. (WebKit::EditorClientWinCE::canCopyCut):
  777. (WebKit::EditorClientWinCE::canPaste):
  778. * WebCoreSupport/EditorClientWinCE.h:
  779. 2011-04-19 Vsevolod Vlasov <vsevik@chromium.org>
  780. Reviewed by Pavel Feldman.
  781. Web Inspector: Rename lengthReceived to encodedDataLength/dataLength
  782. https://bugs.webkit.org/show_bug.cgi?id=58883
  783. * WebCoreSupport/FrameLoaderClientWinCE.h:
  784. 2011-04-04 MORITA Hajime <morrita@google.com>
  785. Reviewed by Ryosuke Niwa.
  786. [Refactoring] SpellCheckingResult should be replaced with TextCheckingResult
  787. https://bugs.webkit.org/show_bug.cgi?id=56085
  788. * WebCoreSupport/EditorClientWinCE.h:
  789. (WebKit::EditorClientWinCE::requestCheckingOfString):
  790. 2011-04-04 Alexey Proskuryakov <ap@apple.com>
  791. Reviewed by Dan Bernstein.
  792. REGRESSION (WebKit2): Caps-Lock indicator sometimes doesn't appear in WebKit2
  793. https://bugs.webkit.org/show_bug.cgi?id=51230
  794. <rdar://problem/8780989>
  795. * WebView.cpp: (WebView::handleKeyDown): Moved Caps Lock handling from WebKits to WebCore,
  796. because WebKit shouldn't be smart.
  797. 2011-03-31 Patrick Gansterer <paroga@webkit.org>
  798. Unreviewed WinCE build fix for r82580.
  799. * WebCoreSupport/FrameLoaderClientWinCE.h: StringWithDirection is in WebCore
  800. and not in WTF namespace.
  801. 2011-03-31 Evan Martin <evan@chromium.org>
  802. Reviewed by Eric Seidel.
  803. <title> should support dir attribute
  804. https://bugs.webkit.org/show_bug.cgi?id=50961
  805. Update to new FrameLoaderClient interface.
  806. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  807. (WebKit::FrameLoaderClientWinCE::dispatchDidReceiveTitle):
  808. (WebKit::FrameLoaderClientWinCE::setTitle):
  809. * WebCoreSupport/FrameLoaderClientWinCE.h:
  810. 2011-03-27 Patrick Gansterer <paroga@webkit.org>
  811. Reviewed by Andreas Kling.
  812. [WINCE] Use a appropriate user agent string
  813. https://bugs.webkit.org/show_bug.cgi?id=57175
  814. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  815. (WebKit::FrameLoaderClientWinCE::userAgent):
  816. 2011-03-26 Patrick Gansterer <paroga@webkit.org>
  817. Unreviewed WinCE build fix.
  818. * CMakeListsWinCE.txt: Added missing include directory.
  819. 2011-03-25 Andy Estes <aestes@apple.com>
  820. Reviewed by Adele Peterson.
  821. REGRESSION (r70748): latest nightly builds kills AC_QuickTime.js
  822. https://bugs.webkit.org/show_bug.cgi?id=49016
  823. Update objectContentType() implementation to handle the
  824. shouldPreferPlugInsForImages flag.
  825. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  826. (WebKit::FrameLoaderClientWinCE::objectContentType):
  827. * WebCoreSupport/FrameLoaderClientWinCE.h:
  828. 2011-03-24 Sheriff Bot <webkit.review.bot@gmail.com>
  829. Unreviewed, rolling out r81916 and r81917.
  830. http://trac.webkit.org/changeset/81916
  831. http://trac.webkit.org/changeset/81917
  832. https://bugs.webkit.org/show_bug.cgi?id=57071
  833. broke a test on platforms that do not have QuickTime installed
  834. (Requested by estes on #webkit).
  835. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  836. (WebKit::FrameLoaderClientWinCE::objectContentType):
  837. * WebCoreSupport/FrameLoaderClientWinCE.h:
  838. 2011-03-24 Andy Estes <aestes@apple.com>
  839. Reviewed by Darin Adler.
  840. REGRESSION (r70748): latest nightly builds kills AC_QuickTime.js
  841. https://bugs.webkit.org/show_bug.cgi?id=49016
  842. Update objectContentType() implementation to handle the
  843. shouldPreferPlugInsForImages flag.
  844. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  845. (WebKit::FrameLoaderClientWinCE::objectContentType):
  846. * WebCoreSupport/FrameLoaderClientWinCE.h:
  847. 2011-03-07 Sam Weinig <sam@webkit.org>
  848. Reviewed by Anders Carlsson.
  849. Replace WebKit2's decidePolicyForMIMEType with decidePolicyForResponse
  850. https://bugs.webkit.org/show_bug.cgi?id=55827
  851. Renamed FrameLoaderClient::dispatchDecidePolicyForMIMEType to dispatchDecidePolicyForResponse
  852. and pass the entire response, instead of just the MIMEType.
  853. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  854. (WebKit::FrameLoaderClientWinCE::dispatchDecidePolicyForResponse):
  855. * WebCoreSupport/FrameLoaderClientWinCE.h:
  856. 2011-03-03 Alexey Proskuryakov <ap@apple.com>
  857. Removing an include of WebCoreKeyboardUIMode.h that Ive just added. It's already included
  858. via ChromeClient.h
  859. * WebCoreSupport/ChromeClientWinCE.h:
  860. 2011-03-02 Alexey Proskuryakov <ap@apple.com>
  861. Reviewed by Darin Adler.
  862. REGRESSION (WebKit2): Tab keys no longer observe Full Keyboard Access
  863. https://bugs.webkit.org/show_bug.cgi?id=55633
  864. <rdar://problem/8963023>
  865. * WebCoreSupport/ChromeClientWinCE.cpp: (WebKit::ChromeClientWinCE::keyboardUIMode):
  866. * WebCoreSupport/ChromeClientWinCE.h:
  867. Implement keyboardUIMode() instead of tabsToLinks(). No change in functionality, since
  868. this platform doesn't observe or have full keyboard access state.
  869. 2011-03-02 Brian Weinstein <bweinstein@apple.com>
  870. WinCE build fix.
  871. * WebCoreSupport/PlatformStrategiesWinCE.h: Add a needed include.
  872. 2011-03-02 Brian Weinstein <bweinstein@apple.com>
  873. WinCE build fix. Have PlatformStrategiesWinCE inherit from CookiesStrategy,
  874. and implement the needed methods.
  875. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  876. (PlatformStrategiesWinCE::createCookiesStrategy):
  877. (PlatformStrategiesWinCE::notifyCookiesChanged):
  878. * WebCoreSupport/PlatformStrategiesWinCE.h:
  879. 2011-02-28 Chang Shu <cshu@webkit.org>
  880. Reviewed by Ryosuke Niwa.
  881. Remove the support of Frame::isContentEditable and its dependencies.
  882. https://bugs.webkit.org/show_bug.cgi?id=54292
  883. Remove the WebKit side implementation.
  884. * WebCoreSupport/EditorClientWinCE.cpp:
  885. * WebCoreSupport/EditorClientWinCE.h:
  886. 2011-02-19 Charlie Reis <creis@chromium.org>
  887. Reviewed by Mihai Parparita.
  888. Ensure loading has stopped in HistoryController::goToItem
  889. https://bugs.webkit.org/show_bug.cgi?id=54517
  890. Add a FrameLoaderClient callback for whether to stop loading before goToItem.
  891. Test: http/tests/navigation/forward-to-fragment-fires-onload.html
  892. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  893. (WebKit::FrameLoaderClientWinCE::shouldStopLoadingForHistoryItem): Added.
  894. * WebCoreSupport/FrameLoaderClientWinCE.h:
  895. 2011-02-10 Luiz Agostini <luiz.agostini@openbossa.org>
  896. Reviewed by Adam Roben.
  897. HTML5 <details> and <summary>: localized text
  898. https://bugs.webkit.org/show_bug.cgi?id=54260
  899. The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
  900. provide the default label to be used by a <details> tag that has no <summary> child.
  901. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  902. (PlatformStrategiesWinCE::defaultDetailsSummaryText):
  903. * WebCoreSupport/PlatformStrategiesWinCE.h:
  904. 2011-01-26 MORITA Hajime <morrita@google.com>
  905. Reviewed by Ryosuke Niwa.
  906. Refactoring: Extract TextCheckerClient from EditorClient
  907. https://bugs.webkit.org/show_bug.cgi?id=53213
  908. * WebCoreSupport/EditorClientWinCE.h:
  909. (WebKit::EditorClientWinCE::textChecker):
  910. 2011-02-07 Ryosuke Niwa <rniwa@webkit.org>
  911. Reviewed by Adam Barth.
  912. Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
  913. https://bugs.webkit.org/show_bug.cgi?id=52417
  914. Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
  915. not implemented.
  916. * WebCoreSupport/EditorClientWinCE.cpp:
  917. (WebKit::EditorClientWinCE::canCopyCut): Added.
  918. (WebKit::EditorClientWinCE::canPaste): Added.
  919. * WebCoreSupport/EditorClientWinCE.h:
  920. 2011-02-10 Nate Chapin <japhet@chromium.org>
  921. Reviewed by Adam Barth.
  922. Update calls to DocumentWriter.
  923. https://bugs.webkit.org/show_bug.cgi?id=50489
  924. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  925. (WebKit::FrameLoaderClientWinCE::finishedLoading):
  926. 2011-02-08 Adam Barth <abarth@webkit.org>
  927. Reviewed by Eric Seidel.
  928. Remove orphan code from old parser
  929. https://bugs.webkit.org/show_bug.cgi?id=53984
  930. * WebCoreSupport/ChromeClientWinCE.cpp:
  931. * WebCoreSupport/ChromeClientWinCE.h:
  932. 2011-02-07 Enrica Casucci <enrica@apple.com>
  933. Reviewed Adam Roben and Darin Adler.
  934. WebKit2: drag and drop support on Windows.
  935. https://bugs.webkit.org/show_bug.cgi?id=52775
  936. Removed createDragImageForLink from DragClient.
  937. * WebCoreSupport/DragClientWinCE.cpp:
  938. * WebCoreSupport/DragClientWinCE.h:
  939. 2011-02-06 Patrick Gansterer <paroga@webkit.org>
  940. Reviewed by Martin Robinson.
  941. [WINCE] FrameLoaderClient calls loadURLInChildFrame on the child's frame loader
  942. https://bugs.webkit.org/show_bug.cgi?id=53896
  943. * WebView.cpp:
  944. (WebView::createFrame): Use coreFrame instead of childFrame.
  945. 2011-02-03 Adam Langley <agl@chromium.org>
  946. Reviewed by Adam Barth.
  947. Plumb mixed script URL to FrameLoaderClient
  948. https://bugs.webkit.org/show_bug.cgi?id=52384
  949. Regressions covered by http/tests/security/mixedContent/*
  950. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  951. (WebKit::FrameLoaderClientWinCE::didRunInsecureContent):
  952. * WebCoreSupport/FrameLoaderClientWinCE.h:
  953. 2011-02-02 Patrick Gansterer <paroga@webkit.org>
  954. Unreviewed WinCE build fix for r77398.
  955. * WebView.cpp:
  956. (WebView::paint):
  957. 2011-01-28 Dan Bernstein <mitz@apple.com>
  958. Reviewed by Sam Weinig.
  959. <select> can't display right-to-left (rtl) languages
  960. https://bugs.webkit.org/show_bug.cgi?id=19785
  961. * WebCoreSupport/ChromeClientWinCE.cpp:
  962. (WebKit::ChromeClientWinCE::selectItemAlignmentFollowsMenuWritingDirection): Added.
  963. * WebCoreSupport/ChromeClientWinCE.h:
  964. 2011-01-25 Patrick Gansterer <paroga@webkit.org>
  965. Reviewed by Adam Roben.
  966. [WINCE] Ensure layouted frame when painting
  967. https://bugs.webkit.org/show_bug.cgi?id=53108
  968. * WebView.cpp:
  969. (WebView::paint):
  970. 2011-01-04 Patrick Gansterer <paroga@webkit.org>
  971. Unreviewed WinCE build fix.
  972. * WebCoreSupport/ChromeClientWinCE.cpp:
  973. (WebKit::ChromeClientWinCE::exceededDatabaseQuota): Added missing semicolon.
  974. (WebKit::ChromeClientWinCE::reachedApplicationCacheOriginQuota):
  975. * WebCoreSupport/ChromeClientWinCE.h:
  976. 2010-12-29 Patrick Gansterer <paroga@webkit.org>
  977. Unreviewed build fix for WinCE after r73802.
  978. * WebCoreSupport/ContextMenuClientWinCE.cpp:
  979. (WebKit::ContextMenuClientWinCE::customizeMenu):
  980. * WebCoreSupport/ContextMenuClientWinCE.h:
  981. 2010-12-22 Sam Weinig <sam@webkit.org>
  982. Reviewed by Darin Adler.
  983. WebKit2 needs to mirror the frame tree in the UIProcess
  984. https://bugs.webkit.org/show_bug.cgi?id=51546
  985. - Add client functions to notify that a frame has been added or
  986. removed from the page cache.
  987. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  988. (WebKit::FrameLoaderClientWinCE::didSaveToPageCache):
  989. (WebKit::FrameLoaderClientWinCE::didRestoreFromPageCache):
  990. * WebCoreSupport/FrameLoaderClientWinCE.h:
  991. 2010-12-22 Ryosuke Niwa <rniwa@webkit.org>
  992. Reviewed by Eric Seidel.
  993. Editor.h doesn't need to include SelectionController.h
  994. https://bugs.webkit.org/show_bug.cgi?id=51441
  995. Renamed SelectionController::EDirection to SelectionDirection.
  996. * WebCoreSupport/EditorClientWinCE.cpp:
  997. (WebKit::EditorClientWinCE::handleEditingKeyboardEvent):
  998. 2010-10-28 MORITA Hajime <morrita@google.com>
  999. Reviewed by Ojan Vafai.
  1000. spellcheck does not check pasted text
  1001. https://bugs.webkit.org/show_bug.cgi?id=40092
  1002. Added a stub implememntation.
  1003. * WebCoreSupport/EditorClientWinCE.h:
  1004. (WebKit::EditorClient::requestCheckingOfString):
  1005. 2010-12-07 Martin Robinson <mrobinson@igalia.com>
  1006. Unreviewed, rolling out r73392.
  1007. http://trac.webkit.org/changeset/73392
  1008. https://bugs.webkit.org/show_bug.cgi?id=50489
  1009. This commit caused crashes on the GTK+ bots
  1010. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  1011. (WebKit::FrameLoaderClientWinCE::finishedLoading):
  1012. 2010-12-06 Nate Chapin <japhet@chromium.org>
  1013. Reviewed by Adam Barth.
  1014. Update calls to DocumentWriter.
  1015. https://bugs.webkit.org/show_bug.cgi?id=50489
  1016. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  1017. (WebKit::FrameLoaderClientWinCE::finishedLoading):
  1018. 2010-12-06 Patrick Gansterer <paroga@webkit.org>
  1019. Reviewed by Andreas Kling.
  1020. [WINCE] Add build system
  1021. https://bugs.webkit.org/show_bug.cgi?id=50522
  1022. * CMakeListsWinCE.txt: Added.
  1023. 2010-12-01 Jia Pu <jpu@apple.com>
  1024. Reviewed by Darin Adler.
  1025. Support multiple correction candidates panel for misspelled word on Mac OS X.
  1026. https://bugs.webkit.org/show_bug.cgi?id=50137
  1027. <rdar://problem/8568059>
  1028. Adopted new function signature defined in base class.
  1029. * WebCoreSupport/EditorClientWinCE.cpp:
  1030. (WebKit::EditorClientWinCE::getGuessesForWord):
  1031. * WebCoreSupport/EditorClientWinCE.h:
  1032. 2010-11-30 Patrick Gansterer <paroga@webkit.org>
  1033. Reviewed by Adam Roben.
  1034. [WINCE] Add WebView
  1035. https://bugs.webkit.org/show_bug.cgi?id=50216
  1036. * WebView.cpp: Added.
  1037. * WebView.h: Added.
  1038. 2010-11-13 Patrick Gansterer <paroga@webkit.org>
  1039. Unreviewed, build fix after r71541.
  1040. * WebCoreSupport/ChromeClientWinCE.h:
  1041. 2010-11-08 Alexey Proskuryakov <ap@apple.com>
  1042. Reviewed by Darin Adler.
  1043. https://bugs.webkit.org/show_bug.cgi?id=48685
  1044. Notify UI process about focused frame
  1045. Added an empty implementation of the new ChromeClient method.
  1046. * WebCoreSupport/ChromeClientWinCE.cpp:
  1047. (WebKit::ChromeClientWinCE::focusedFrameChanged):
  1048. * WebCoreSupport/ChromeClientWinCE.h:
  1049. 2010-11-02 Patrick Gansterer <paroga@webkit.org>
  1050. Unreviewed, build fix after r71041.
  1051. * WebCoreSupport/ChromeClientWinCE.h:
  1052. (WebKit::ChromeClientWinCE::showContextMenu):
  1053. 2010-10-30 Patrick Gansterer <paroga@webkit.org>
  1054. Unreviewed, build fix after r70574.
  1055. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  1056. (WebKit::FrameLoaderClientWinCE::transferLoadingResourceFromPage):
  1057. 2010-10-29 Alexey Proskuryakov <ap@apple.com>
  1058. Reviewed by Darin Adler.
  1059. https://bugs.webkit.org/show_bug.cgi?id=48576
  1060. Let WebKit2 client know when a frame is a frameset
  1061. Added a blank implementation of the new FrameLoaderClient method.
  1062. * WebCoreSupport/FrameLoaderClientWinCE.h:
  1063. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  1064. (WebKit::FrameLoaderClientWinCE::dispatchDidBecomeFrameset):
  1065. 2010-10-26 Jenn Braithwaite <jennb@chromium.org>
  1066. Reviewed by Dmitry Titov.
  1067. Resource tracking failure when trying to move a frame between documents
  1068. https://bugs.webkit.org/show_bug.cgi?id=44713
  1069. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  1070. (WebKit::FrameLoaderClientWinCE::transferLoadingResourceFromPage):
  1071. Empty method.
  1072. * WebCoreSupport/FrameLoaderClientWinCE.h:
  1073. 2010-10-25 Patrick Gansterer <paroga@webkit.org>
  1074. Reviewed by David Kilzer.
  1075. Replace _countof with WTF_ARRAY_LENGTH
  1076. https://bugs.webkit.org/show_bug.cgi?id=48229
  1077. * WebCoreSupport/EditorClientWinCE.cpp:
  1078. (WebKit::EditorClientWinCE::interpretKeyEvent):
  1079. 2010-10-22 Sam Weinig <sam@webkit.org>
  1080. Reviewed by Anders Carlsson.
  1081. WebKit2 needs to pass the current event modifier flags when requesting a new window
  1082. https://bugs.webkit.org/show_bug.cgi?id=48140
  1083. * WebCoreSupport/ChromeClientWinCE.cpp:
  1084. (WebKit::ChromeClientWinCE::createWindow):
  1085. * WebCoreSupport/ChromeClientWinCE.h:
  1086. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  1087. (WebKit::FrameLoaderClientWinCE::dispatchCreatePage):
  1088. * WebCoreSupport/FrameLoaderClientWinCE.h:
  1089. Add NavigationAction parameter.
  1090. 2010-10-22 Patrick Gansterer <paroga@webkit.org>
  1091. Reviewed by Adam Roben.
  1092. [WINCE] Implement EditorClient::handleKeyboardEvent
  1093. https://bugs.webkit.org/show_bug.cgi?id=48118
  1094. Copy the implementation from the EFL port.
  1095. * WebCoreSupport/EditorClientWinCE.cpp:
  1096. (WebKit::EditorClientWinCE::interpretKeyEvent):
  1097. (WebKit::EditorClientWinCE::handleEditingKeyboardEvent):
  1098. (WebKit::EditorClientWinCE::handleKeyboardEvent):
  1099. * WebCoreSupport/EditorClientWinCE.h:
  1100. 2010-10-15 Nikolas Zimmermann <nzimmermann@rim.com>
  1101. Reviewed by Dirk Schulze.
  1102. Replace some String::format() usages by StringConcatenate in WebKit
  1103. https://bugs.webkit.org/show_bug.cgi?id=47714
  1104. * WebCoreSupport/PlatformStrategiesWinCE.cpp:
  1105. (PlatformStrategiesWinCE::imageTitle):
  1106. (PlatformStrategiesWinCE::multipleFileUploadText):
  1107. 2010-09-28 Jenn Braithwaite <jennb@chromium.org>
  1108. Reviewed by Dmitry Titov.
  1109. Added oldPage param to FrameLoaderClient::didTransferChildFrameToNewDocument.
  1110. https://bugs.webkit.org/show_bug.cgi?id=46663
  1111. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  1112. (WebKit::FrameLoaderClientWinCE::didTransferChildFrameToNewDocument):
  1113. * WebCoreSupport/FrameLoaderClientWinCE.h:
  1114. 2010-09-23 Patrick Gansterer <paroga@webkit.org>
  1115. Reviewed by Adam Roben.
  1116. Add PlatformStrategiesWinCE
  1117. https://bugs.webkit.org/show_bug.cgi?id=46371
  1118. * WebCoreSupport/PlatformStrategiesWinCE.cpp: Copied from WebKit/win/WebCoreSupport/WebPlatformStrategies.cpp.
  1119. * WebCoreSupport/PlatformStrategiesWinCE.h: Copied from WebKit/win/WebCoreSupport/WebPlatformStrategies.h.
  1120. 2010-09-23 Patrick Gansterer <paroga@webkit.org>
  1121. Reviewed by Adam Roben.
  1122. Add ChromeClientWinCE
  1123. https://bugs.webkit.org/show_bug.cgi?id=46294
  1124. * WebCoreSupport/ChromeClientWinCE.cpp: Added.
  1125. * WebCoreSupport/ChromeClientWinCE.h: Added.
  1126. 2010-09-23 Patrick Gansterer <paroga@webkit.org>
  1127. Unreviewed.
  1128. Build fix for FrameLoaderClientWinCE.
  1129. * WebCoreSupport/FrameLoaderClientWinCE.cpp:
  1130. (WebKit::FrameLoaderClientWinCE::canShowMIMETypeAsHTML): Add missing method.
  1131. * WebCoreSupport/FrameLoaderClientWinCE.h:
  1132. 2010-09-21 Patrick Gansterer <paroga@webkit.org>
  1133. Reviewed by Adam Roben.
  1134. Add "WinCE" to classname for all WebCoreSupport classes to match filename.
  1135. https://bugs.webkit.org/show_bug.cgi?id=46175
  1136. * WebCoreSupport/ContextMenuClientWinCE.cpp: Rename ContextMenuClient to ContextMenuClientWinCE.
  1137. * WebCoreSupport/ContextMenuClientWinCE.h: Ditto.
  1138. * WebCoreSupport/DragClientWinCE.cpp: Rename DragClient to DragClientWinCE.
  1139. * WebCoreSupport/DragClientWinCE.h: Ditto.
  1140. * WebCoreSupport/EditorClientWinCE.cpp: Rename EditorClient to EditorClientWinCE.
  1141. * WebCoreSupport/EditorClientWinCE.h: Ditto.
  1142. * WebCoreSupport/InspectorClientWinCE.cpp: Rename InspectorClient to InspectorClientWinCE.
  1143. * WebCoreSupport/InspectorClientWinCE.h: Ditto.
  1144. 2010-09-20 Patrick Gansterer <paroga@paroga.com>
  1145. Reviewed by Adam Roben.
  1146. Add FrameLoaderClientWinCE
  1147. https://bugs.webkit.org/show_bug.cgi?id=45682
  1148. * WebCoreSupport/FrameLoaderClientWinCE.cpp: Added.
  1149. * WebCoreSupport/FrameLoaderClientWinCE.h: Added.
  1150. 2010-09-16 Patrick Gansterer <paroga@paroga.com>
  1151. Reviewed by Adam Roben.
  1152. [WINCE] Add missing FrameNetworkingContextWinCE::blockedError
  1153. https://bugs.webkit.org/show_bug.cgi?id=45680
  1154. * WebCoreSupport/FrameNetworkingContextWinCE.cpp:
  1155. (WebKit::FrameNetworkingContextWinCE::blockedError):
  1156. * WebCoreSupport/FrameNetworkingContextWinCE.h:
  1157. 2010-09-13 Patrick Gansterer <paroga@paroga.com>
  1158. Reviewed by Kenneth Rohde Christiansen.
  1159. Add FrameNetworkingContextWinCE
  1160. https://bugs.webkit.org/show_bug.cgi?id=45474
  1161. * WebCoreSupport/FrameNetworkingContextWinCE.cpp: Added.
  1162. (WebKit::FrameNetworkingContextWinCE::FrameNetworkingContextWinCE):
  1163. (WebKit::FrameNetworkingContextWinCE::userAgent):
  1164. (WebKit::FrameNetworkingContextWinCE::referrer):
  1165. * WebCoreSupport/FrameNetworkingContextWinCE.h: Added.
  1166. (WebKit::FrameNetworkingContextWinCE::create):
  1167. 2010-08-31 Patrick Gansterer <paroga@paroga.com>
  1168. Reviewed by Kenneth Rohde Christiansen.
  1169. Add EditorClientWinCE
  1170. https://bugs.webkit.org/show_bug.cgi?id=44822
  1171. * WebCoreSupport/EditorClientWinCE.cpp: Added.
  1172. (WebKit::EditorClient::EditorClient):
  1173. (WebKit::EditorClient::~EditorClient):
  1174. (WebKit::EditorClient::setInputMethodState):
  1175. (WebKit::EditorClient::shouldDeleteRange):
  1176. (WebKit::EditorClient::shouldShowDeleteInterface):
  1177. (WebKit::EditorClient::isContinuousSpellCheckingEnabled):
  1178. (WebKit::EditorClient::isGrammarCheckingEnabled):
  1179. (WebKit::EditorClient::spellCheckerDocumentTag):
  1180. (WebKit::EditorClient::shouldBeginEditing):
  1181. (WebKit::EditorClient::shouldEndEditing):
  1182. (WebKit::EditorClient::shouldInsertText):
  1183. (WebKit::EditorClient::shouldChangeSelectedRange):
  1184. (WebKit::EditorClient::shouldApplyStyle):
  1185. (WebKit::EditorClient::shouldMoveRangeAfterDelete):
  1186. (WebKit::EditorClient::didBeginEditing):
  1187. (WebKit::EditorClient::respondToChangedContents):
  1188. (WebKit::EditorClient::respondToChangedSelection):
  1189. (WebKit::EditorClient::didEndEditing):
  1190. (WebKit::EditorClient::didWriteSelectionToPasteboard):
  1191. (WebKit::EditorClient::didSetSelectionTypesForPasteboard):
  1192. (WebKit::EditorClient::isEditable):
  1193. (WebKit::EditorClient::registerCommandForUndo):
  1194. (WebKit::EditorClient::registerCommandForRedo):
  1195. (WebKit::EditorClient::clearUndoRedoOperations):
  1196. (WebKit::EditorClient::canUndo):
  1197. (WebKit::EditorClient::canRedo):
  1198. (WebKit::EditorClient::undo):
  1199. (WebKit::EditorClient::redo):
  1200. (WebKit::EditorClient::shouldInsertNode):
  1201. (WebKit::EditorClient::pageDestroyed):
  1202. (WebKit::EditorClient::smartInsertDeleteEnabled):
  1203. (WebKit::EditorClient::isSelectTrailingWhitespaceEnabled):
  1204. (WebKit::EditorClient::toggleContinuousSpellChecking):
  1205. (WebKit::EditorClient::toggleGrammarChecking):
  1206. (WebKit::EditorClient::handleKeyboardEvent):
  1207. (WebKit::EditorClient::handleInputMethodKeydown):
  1208. (WebKit::EditorClient::textFieldDidBeginEditing):
  1209. (WebKit::EditorClient::textFieldDidEndEditing):
  1210. (WebKit::EditorClient::textDidChangeInTextField):
  1211. (WebKit::EditorClient::doTextFieldCommandFromEvent):
  1212. (WebKit::EditorClient::textWillBeDeletedInTextField):
  1213. (WebKit::EditorClient::textDidChangeInTextArea):
  1214. (WebKit::EditorClient::ignoreWordInSpellDocument):
  1215. (WebKit::EditorClient::learnWord):
  1216. (WebKit::EditorClient::checkSpellingOfString):
  1217. (WebKit::EditorClient::getAutoCorrectSuggestionForMisspelledWord):
  1218. (WebKit::EditorClient::checkGrammarOfString):
  1219. (WebKit::EditorClient::updateSpellingUIWithGrammarString):
  1220. (WebKit::EditorClient::updateSpellingUIWithMisspelledWord):
  1221. (WebKit::EditorClient::showSpellingUI):
  1222. (WebKit::EditorClient::spellingUIIsShowing):
  1223. (WebKit::EditorClient::getGuessesForWord):
  1224. (WebKit::EditorClient::willSetInputMethodState):
  1225. * WebCoreSupport/EditorClientWinCE.h: Added.
  1226. 2010-08-31 Patrick Gansterer <paroga@paroga.com>
  1227. Reviewed by Kenneth Rohde Christiansen.
  1228. Add DragClientWinCE
  1229. https://bugs.webkit.org/show_bug.cgi?id=44821
  1230. * WebCoreSupport/DragClientWinCE.cpp: Added.
  1231. (WebKit::DragClient::willPerformDragDestinationAction):
  1232. (WebKit::DragClient::willPerformDragSourceAction):
  1233. (WebKit::DragClient::actionMaskForDrag):
  1234. (WebKit::DragClient::dragSourceActionMaskForPoint):
  1235. (WebKit::DragClient::startDrag):
  1236. (WebKit::DragClient::createDragImageForLink):
  1237. (WebKit::DragClient::dragControllerDestroyed):
  1238. * WebCoreSupport/DragClientWinCE.h: Added.
  1239. 2010-08-31 Patrick Gansterer <paroga@paroga.com>
  1240. Reviewed by Kenneth Rohde Christiansen.
  1241. Add ContextMenuClientWinCE
  1242. https://bugs.webkit.org/show_bug.cgi?id=44820
  1243. * WebCoreSupport/ContextMenuClientWinCE.cpp: Added.
  1244. (WebKit::ContextMenuClient::ContextMenuClient):
  1245. (WebKit::ContextMenuClient::contextMenuDestroyed):
  1246. (WebKit::ContextMenuClient::getCustomMenuFromDefaultItems):
  1247. (WebKit::ContextMenuClient::contextMenuItemSelected):
  1248. (WebKit::ContextMenuClient::downloadURL):
  1249. (WebKit::ContextMenuClient::copyImageToClipboard):
  1250. (WebKit::ContextMenuClient::searchWithGoogle):
  1251. (WebKit::ContextMenuClient::lookUpInDictionary):
  1252. (WebKit::ContextMenuClient::speak):
  1253. (WebKit::ContextMenuClient::stopSpeaking):
  1254. (WebKit::ContextMenuClient::isSpeaking):
  1255. * WebCoreSupport/ContextMenuClientWinCE.h: Added.
  1256. 2010-08-28 Patrick Gansterer <paroga@paroga.com>
  1257. Reviewed by Adam Roben.
  1258. Add InspectorClientWinCE
  1259. https://bugs.webkit.org/show_bug.cgi?id=44819
  1260. * WebCoreSupport/InspectorClientWinCE.cpp: Added.
  1261. (WebKit::InspectorClient::InspectorClient):
  1262. (WebKit::InspectorClient::~InspectorClient):
  1263. (WebKit::InspectorClient::inspectorDestroyed):
  1264. (WebKit::InspectorClient::openInspectorFrontend):
  1265. (WebKit::InspectorClient::releaseFrontendPage):
  1266. (WebKit::InspectorClient::highlight):
  1267. (WebKit::InspectorClient::hideHighlight):
  1268. (WebKit::InspectorClient::populateSetting):
  1269. (WebKit::InspectorClient::storeSetting):
  1270. (WebKit::InspectorClient::sendMessageToFrontend):
  1271. * WebCoreSupport/InspectorClientWinCE.h: Added.