OLD | NEW |
| 1 2011-06-30 John Bates <jbates@google.com> |
| 2 |
| 3 Reviewed by James Robinson. |
| 4 |
| 5 Chromium bug: Compositing on a lost context causes latch deadlocks. |
| 6 The cause of deadlock was that a setLatch command is added to the lost |
| 7 compositor GL context, and a waitLatch would never complete on a child c
ontext. |
| 8 This change checks whether the compositor context is in error state befo
re |
| 9 doing the compositing. |
| 10 https://bugs.webkit.org/show_bug.cgi?id=63681 |
| 11 |
| 12 * src/WebViewImpl.cpp: |
| 13 (WebKit::WebViewImpl::composite): |
| 14 |
| 15 2011-06-30 Cary Clark <caryclark@google.com> |
| 16 |
| 17 Reviewed by James Robinson. |
| 18 |
| 19 Use Skia if Skia on Mac Chrome is enabled |
| 20 https://bugs.webkit.org/show_bug.cgi?id=62999 |
| 21 |
| 22 * WebKit.gyp: |
| 23 If building for Skia, exclude CG files. |
| 24 If not, exclude Skia files. |
| 25 |
| 26 * features.gypi: |
| 27 Enable Skia on Chromium Mac if so instructed by the gyp define. |
| 28 Allow Skia to be hardware accelerated on the Mac. |
| 29 |
| 30 * public/WebCommon.h: |
| 31 If Skia is defined on the Mac, define it in the WebXXX |
| 32 interfaces as well. |
| 33 |
| 34 2011-06-30 Sreeram Ramachandran <sreeram@chromium.org> |
| 35 |
| 36 Reviewed by Adam Barth. |
| 37 |
| 38 Suppress modal JavaScript/HTML dialogs during unload events |
| 39 https://bugs.webkit.org/show_bug.cgi?id=56397 |
| 40 |
| 41 Implementation of the new shouldRunModalDialogDuringPageDismissal() API |
| 42 to block alerts during unload handlers. Logs such events to the console |
| 43 and updates histograms. |
| 44 |
| 45 * src/ChromeClientImpl.cpp: |
| 46 (WebKit::ChromeClientImpl::shouldRunModalDialogDuringPageDismissal): |
| 47 * src/ChromeClientImpl.h: |
| 48 |
| 49 2011-06-30 Anders Carlsson <andersca@apple.com> |
| 50 |
| 51 Reviewed by Dan Bernstein. |
| 52 |
| 53 More ScrollableArea scaffolding |
| 54 https://bugs.webkit.org/show_bug.cgi?id=63678 |
| 55 |
| 56 Add an enclosingScrollableArea stub. |
| 57 |
| 58 * src/WebScrollbarImpl.cpp: |
| 59 (WebKit::WebScrollbarImpl::enclosingScrollableArea): |
| 60 * src/WebScrollbarImpl.h: |
| 61 |
| 62 2011-06-28 Hans Wennborg <hans@chromium.org> |
| 63 |
| 64 Reviewed by Tony Chang. |
| 65 |
| 66 IndexedDB: Prepare for running layout tests with LevelDB |
| 67 https://bugs.webkit.org/show_bug.cgi?id=63593 |
| 68 |
| 69 WebIDBFactory should decide what DefaultBackingStore means. |
| 70 Also fix handling of layout test and incognito mode properly. |
| 71 |
| 72 * src/WebIDBFactoryImpl.cpp: |
| 73 (WebKit::WebIDBFactoryImpl::open): |
| 74 |
| 75 2011-06-30 Alexander Pavlov <apavlov@chromium.org> |
| 76 |
| 77 Reviewed by Kent Tamura. |
| 78 |
| 79 [Chromium] Autofill suggestions appear in upper left corner after input
change |
| 80 https://bugs.webkit.org/show_bug.cgi?id=63702 |
| 81 |
| 82 * src/ChromeClientImpl.cpp: |
| 83 (WebKit::ChromeClientImpl::screenToWindow): Implemented. |
| 84 * src/WebViewImpl.cpp: |
| 85 (WebKit::WebViewImpl::refreshAutoFillPopup): Pass screen (not window) co
ordinates into setWindowRect(). |
| 86 |
| 87 2011-06-30 Kentaro Hara <haraken@google.com> |
| 88 |
| 89 Reviewed by Kent Tamura. |
| 90 |
| 91 Change the label of an HTML5 file chooser button to "Choose Files" |
| 92 https://bugs.webkit.org/show_bug.cgi?id=49245 |
| 93 |
| 94 We should notify capability of multiple files to users. |
| 95 |
| 96 Test: fast/forms/input-file-label.html |
| 97 |
| 98 * DEPS: |
| 99 * public/WebLocalizedString.h: Depends on chromium_rev>=91051. |
| 100 * src/LocalizedStrings.cpp: |
| 101 (WebCore::fileButtonChooseMultipleFilesLabel): Returns a "Choose Files"
label. |
| 102 |
| 103 2011-06-29 James Hawkins <jhawkins@chromium.org> |
| 104 |
| 105 Reviewed by Pavel Feldman. |
| 106 |
| 107 [Chromium] Fix a crash on when executeCommand(copy) is called on a null
node. |
| 108 https://bugs.webkit.org/show_bug.cgi?id=63626 |
| 109 |
| 110 * src/WebFrameImpl.cpp: |
| 111 (WebKit::pluginContainerFromNode): |
| 112 |
| 113 2011-06-29 Andrey Kosyakov <caseq@chromium.org> |
| 114 |
| 115 Reviewed by Pavel Feldman. |
| 116 |
| 117 Web Inspector: backend needs to provide system-unique object ids, so the
se remain unique across navigation |
| 118 https://bugs.webkit.org/show_bug.cgi?id=62894 |
| 119 |
| 120 * public/WebDevToolsAgent.h: |
| 121 * src/WebDevToolsAgentImpl.cpp: |
| 122 (WebKit::WebDevToolsAgentImpl::setAgentProcessIdentifier): |
| 123 * src/WebDevToolsAgentImpl.h: |
| 124 |
| 125 2011-06-28 Ilya Sherman <isherman@chromium.org> |
| 126 |
| 127 Reviewed by Adam Barth. |
| 128 |
| 129 form.autocomplete="off" does not work |
| 130 https://bugs.webkit.org/show_bug.cgi?id=35823 |
| 131 |
| 132 * src/EditorClientImpl.cpp: |
| 133 (WebKit::EditorClientImpl::autofill): Update callsite. |
| 134 * src/WebFormElement.cpp: |
| 135 (WebKit::WebFormElement::autoComplete): Update callsite. |
| 136 * src/WebInputElement.cpp: |
| 137 (WebKit::WebInputElement::autoComplete): Update callsite. |
| 138 * src/WebPasswordFormUtils.cpp: |
| 139 (WebKit::findPasswordFormFields): Update callsite. |
| 140 |
| 141 2011-06-28 Ryosuke Niwa <rniwa@webkit.org> |
| 142 |
| 143 Rolled DEPS. |
| 144 |
| 145 * DEPS: |
| 146 |
| 147 2011-06-28 Sheriff Bot <webkit.review.bot@gmail.com> |
| 148 |
| 149 Unreviewed, rolling out r89968. |
| 150 http://trac.webkit.org/changeset/89968 |
| 151 https://bugs.webkit.org/show_bug.cgi?id=63581 |
| 152 |
| 153 Broke chromium windows compile (Requested by jamesr on |
| 154 #webkit). |
| 155 |
| 156 * WebKit.gyp: |
| 157 * features.gypi: |
| 158 * public/WebCommon.h: |
| 159 |
| 160 2011-06-28 Cary Clark <caryclark@google.com> |
| 161 |
| 162 Reviewed by James Robinson. |
| 163 |
| 164 Use Skia if Skia on Mac Chrome is enabled |
| 165 https://bugs.webkit.org/show_bug.cgi?id=62999 |
| 166 |
| 167 * WebKit.gyp: |
| 168 If building for Skia, exclude CG files. |
| 169 If not, exclude Skia files. |
| 170 |
| 171 * features.gypi: |
| 172 Enable Skia on Chromium Mac if so instructed by the gyp define. |
| 173 Allow Skia to be hardware accelerated on the Mac. |
| 174 |
| 175 * public/WebCommon.h: |
| 176 If Skia is defined on the Mac, define it in the WebXXX |
| 177 interfaces as well. |
| 178 |
| 179 2011-06-28 Ryosuke Niwa <rniwa@webkit.org> |
| 180 |
| 181 Rolled DEPS. |
| 182 |
| 183 * DEPS: |
| 184 |
| 185 2011-06-27 James Hawkins <jhawkins@chromium.org> |
| 186 |
| 187 Reviewed by Darin Fisher. |
| 188 |
| 189 [Chromium] Pass an optional WebNode that is the node receiving the conte
xt menu action. |
| 190 https://bugs.webkit.org/show_bug.cgi?id=63503 |
| 191 |
| 192 * public/WebFrame.h: |
| 193 * src/WebFrameImpl.cpp: |
| 194 (WebKit::pluginContainerFromNode): |
| 195 (WebKit::WebFrameImpl::executeCommand): |
| 196 (WebKit::WebFrameImpl::printBegin): |
| 197 * src/WebFrameImpl.h: |
| 198 |
| 199 2011-06-27 Ryosuke Niwa <rniwa@webkit.org> |
| 200 |
| 201 Rolled DEPS. |
| 202 |
| 203 * DEPS: |
| 204 |
| 205 2011-06-27 Jay Civelli <jcivelli@chromium.org> |
| 206 |
| 207 Reviewed by Darin Fisher. |
| 208 |
| 209 Adding binary part support to MHTML. |
| 210 https://bugs.webkit.org/show_bug.cgi?id=63310 |
| 211 |
| 212 * public/WebPageSerializer.h: |
| 213 * src/WebPageSerializer.cpp: |
| 214 (WebKit::WebPageSerializer::serializeToMHTML): |
| 215 (WebKit::WebPageSerializer::serializeToMHTMLUsingBinaryEncoding): |
| 216 |
| 217 2011-05-17 Nat Duca <nduca@chromium.org> |
| 218 |
| 219 Reviewed by James Robinson. |
| 220 |
| 221 [chromium] Implement CCLayerTreeHost and CCLayerTreeHostImpl portions of
threaded compositor |
| 222 https://bugs.webkit.org/show_bug.cgi?id=58408 |
| 223 |
| 224 Redirect invalidates and scheduling into compositor when in |
| 225 threaded compositing mode. Add stress tests for CCLayerTreeHost. |
| 226 |
| 227 * WebKit.gypi: |
| 228 * public/WebWidget.h: |
| 229 * src/WebPopupMenuImpl.cpp: |
| 230 (WebKit::WebPopupMenuImpl::animate): |
| 231 * src/WebPopupMenuImpl.h: |
| 232 * src/WebViewImpl.cpp: |
| 233 (WebKit::WebViewImpl::animate): |
| 234 (WebKit::WebViewImpl::paint): |
| 235 (WebKit::WebViewImpl::animateAndLayout): |
| 236 (WebKit::WebViewImpl::updateLayers): |
| 237 (WebKit::WebViewImpl::composite): |
| 238 (WebKit::WebViewImpl::setRootLayerNeedsDisplay): |
| 239 (WebKit::WebViewImpl::setIsAcceleratedCompositingActive): |
| 240 (WebKit::WebViewImpl::doComposite): |
| 241 (WebKit::WebViewImpl::createLayerTreeHostContext3D): |
| 242 (WebKit::WebViewImpl::reallocateRenderer): |
| 243 (WebKit::WebViewImpl::updateLayerRendererSettings): |
| 244 (WebKit::WebViewImpl::updateLayerRendererViewport): |
| 245 * src/WebViewImpl.h: |
| 246 * tests/CCLayerTreeHostTest.cpp: Added. |
| 247 (WTF::CCLayerTreeHostTest::CCLayerTreeHostTest): |
| 248 (WTF::CCLayerTreeHostTest::animateAndLayout): |
| 249 (WTF::CCLayerTreeHostTest::beginCommitOnCCThread): |
| 250 (WTF::CCLayerTreeHostTest::beginCommitOnMainThread): |
| 251 (WTF::CCLayerTreeHostTest::commitOnCCThread): |
| 252 (WTF::CCLayerTreeHostTest::commitCompleteOnCCThread): |
| 253 (WTF::CCLayerTreeHostTest::commitCompleteOnMainThread): |
| 254 (WTF::CCLayerTreeHostTest::drawLayersAndPresentOnCCThread): |
| 255 (WTF::CCLayerTreeHostTest::updateLayers): |
| 256 (WTF::CCLayerTreeHostTest::onBeginTest): |
| 257 (WTF::CCLayerTreeHostTest::doEndTest): |
| 258 (WTF::CCLayerTreeHostTest::onEndTest): |
| 259 (WTF::CCLayerTreeHostTest::runTest): |
| 260 (WTF::CCLayerTreeHostTest::testTimeout): |
| 261 (WTF::MockLayerTreeHostClient::MockLayerTreeHostClient): |
| 262 (WTF::MockLayerTreeHostClient::createLayerTreeHostContext3D): |
| 263 (WTF::MockLayerTreeHostClient::animateAndLayout): |
| 264 (WTF::MockLayerTreeHostClient::updateLayers): |
| 265 (WTF::MockLayerTreeHostCommitter::create): |
| 266 (WTF::MockLayerTreeHostCommitter::commit): |
| 267 (WTF::MockLayerTreeHostCommitter::MockLayerTreeHostCommitter): |
| 268 (WTF::MockLayerTreeHostImpl::create): |
| 269 (WTF::MockLayerTreeHostImpl::beginCommit): |
| 270 (WTF::MockLayerTreeHostImpl::commitComplete): |
| 271 (WTF::MockLayerTreeHostImpl::drawLayersAndPresent): |
| 272 (WTF::MockLayerTreeHostImpl::MockLayerTreeHostImpl): |
| 273 (WTF::MockLayerTreeHostImplProxy::create): |
| 274 (WTF::MockLayerTreeHostImplProxy::createLayerTreeHostImpl): |
| 275 (WTF::MockLayerTreeHostImplProxy::MockLayerTreeHostImplProxy): |
| 276 (WTF::MockLayerTreeHost::MockLayerTreeHost): |
| 277 (WTF::MockLayerTreeHost::createLayerTreeHostImplProxy): |
| 278 (WTF::MockLayerTreeHost::updateLayers): |
| 279 (WTF::MockLayerTreeHost::createLayerTreeHostCommitter): |
| 280 (WTF::MockLayerTreeHost::beginCommit): |
| 281 (WTF::MockLayerTreeHost::commitComplete): |
| 282 (WTF::CCLayerTreeHostTest::doBeginTest): |
| 283 (WTF::CCLayerTreeHostTest::endTest): |
| 284 (WTF::CCLayerTreeHostTestShortlived1::CCLayerTreeHostTestShortlived1): |
| 285 (WTF::CCLayerTreeHostTestShortlived1::beginTest): |
| 286 (WTF::CCLayerTreeHostTestShortlived1::afterTest): |
| 287 (WTF::TEST_F): |
| 288 (WTF::CCLayerTreeHostTestShortlived2::CCLayerTreeHostTestShortlived2): |
| 289 (WTF::CCLayerTreeHostTestShortlived2::beginTest): |
| 290 (WTF::CCLayerTreeHostTestShortlived2::afterTest): |
| 291 (WTF::CCLayerTreeHostTestShortlived3::CCLayerTreeHostTestShortlived3): |
| 292 (WTF::CCLayerTreeHostTestShortlived3::beginTest): |
| 293 (WTF::CCLayerTreeHostTestShortlived3::afterTest): |
| 294 (WTF::CCLayerTreeHostTestCommitingWithContinuousRedraw::CCLayerTreeHostT
estCommitingWithContinuousRedraw): |
| 295 (WTF::CCLayerTreeHostTestCommitingWithContinuousRedraw::beginTest): |
| 296 (WTF::CCLayerTreeHostTestCommitingWithContinuousRedraw::commitCompleteOn
CCThread): |
| 297 (WTF::CCLayerTreeHostTestCommitingWithContinuousRedraw::drawLayersAndPre
sentOnCCThread): |
| 298 (WTF::CCLayerTreeHostTestCommitingWithContinuousRedraw::afterTest): |
| 299 (WTF::CCLayerTreeHostTestSetNeedsCommit1::CCLayerTreeHostTestSetNeedsCom
mit1): |
| 300 (WTF::CCLayerTreeHostTestSetNeedsCommit1::beginTest): |
| 301 (WTF::CCLayerTreeHostTestSetNeedsCommit1::drawLayersAndPresentOnCCThread
): |
| 302 (WTF::CCLayerTreeHostTestSetNeedsCommit1::commitOnCCThread): |
| 303 (WTF::CCLayerTreeHostTestSetNeedsCommit1::afterTest): |
| 304 (WTF::CCLayerTreeHostTestSetNeedsCommit2::CCLayerTreeHostTestSetNeedsCom
mit2): |
| 305 (WTF::CCLayerTreeHostTestSetNeedsCommit2::beginTest): |
| 306 (WTF::CCLayerTreeHostTestSetNeedsCommit2::drawLayersAndPresentOnCCThread
): |
| 307 (WTF::CCLayerTreeHostTestSetNeedsCommit2::commitOnCCThread): |
| 308 (WTF::CCLayerTreeHostTestSetNeedsCommit2::afterTest): |
| 309 (WTF::CCLayerTreeHostTestSetNeedsRedraw::CCLayerTreeHostTestSetNeedsRedr
aw): |
| 310 (WTF::CCLayerTreeHostTestSetNeedsRedraw::beginTest): |
| 311 (WTF::CCLayerTreeHostTestSetNeedsRedraw::drawLayersAndPresentOnCCThread)
: |
| 312 (WTF::CCLayerTreeHostTestSetNeedsRedraw::commitOnCCThread): |
| 313 (WTF::CCLayerTreeHostTestSetNeedsRedraw::afterTest): |
| 314 * tests/CCThreadTest.cpp: |
| 315 (WebCore::TEST): |
| 316 |
| 317 2011-06-27 Yuta Kitamura <yutak@chromium.org> |
| 318 |
| 319 Reviewed by Adam Barth. |
| 320 |
| 321 [Chromium] Add useHixie76WebSocketProtocol to WebSettings |
| 322 https://bugs.webkit.org/show_bug.cgi?id=63424 |
| 323 |
| 324 * public/WebSettings.h: |
| 325 * src/WebSettingsImpl.cpp: |
| 326 (WebKit::WebSettingsImpl::setHixie76WebSocketProtocolEnabled): |
| 327 * src/WebSettingsImpl.h: |
| 328 |
| 329 2011-06-26 Adam Barth <abarth@webkit.org> |
| 330 |
| 331 Reviewed by Eric Seidel. |
| 332 |
| 333 [Chromium] Remove WebSecurityOrigin::grantUniversalAccess |
| 334 https://bugs.webkit.org/show_bug.cgi?id=63415 |
| 335 |
| 336 This function has no callers and is downright dangerous. |
| 337 |
| 338 * public/WebSecurityOrigin.h: |
| 339 * src/WebSecurityOrigin.cpp: |
| 340 |
| 341 2011-06-26 Adam Barth <abarth@webkit.org> |
| 342 |
| 343 Reviewed by Eric Seidel. |
| 344 |
| 345 [Chromium] Remove code behind WEBKIT_FRAME_TO_DOCUMENT_API_MOVE |
| 346 https://bugs.webkit.org/show_bug.cgi?id=63402 |
| 347 |
| 348 These old APIs are no longer needed. |
| 349 |
| 350 * public/WebFrame.h: |
| 351 * src/WebFrameImpl.cpp: |
| 352 * src/WebFrameImpl.h: |
| 353 |
| 354 2011-06-25 Adam Barth <abarth@webkit.org> |
| 355 |
| 356 Reviewed by Eric Seidel. |
| 357 |
| 358 [Chromium] Update WebKit for WEBKIT_FRAME_TO_DOCUMENT_API_MOVE |
| 359 https://bugs.webkit.org/show_bug.cgi?id=63394 |
| 360 |
| 361 * src/FrameLoaderClientImpl.cpp: |
| 362 (WebKit::FrameLoaderClientImpl::dispatchWillPerformClientRedirect): |
| 363 |
| 364 2011-06-25 Adam Barth <abarth@webkit.org> |
| 365 |
| 366 Roll Chromium DEPS. |
| 367 |
| 368 * DEPS: |
| 369 |
| 370 2011-06-25 Adam Barth <abarth@webkit.org> |
| 371 |
| 372 Unreviewed build fix. Remove ifdefs around these two functions because |
| 373 we're not planning to move them. This patch makes WebFrameImpl.h |
| 374 consistent with WebFrame.h so we can build with the new API |
| 375 configuration. |
| 376 |
| 377 * src/WebFrameImpl.h: |
| 378 |
| 379 2011-06-24 Nat Duca <nduca@chromium.org> |
| 380 |
| 381 Unreviewed, rolling out r89694. |
| 382 http://trac.webkit.org/changeset/89694 |
| 383 https://bugs.webkit.org/show_bug.cgi?id=58408 |
| 384 |
| 385 Test shell still not ready for animate changes. |
| 386 |
| 387 * WebKit.gypi: |
| 388 * public/WebWidget.h: |
| 389 (WebKit::WebWidget::animate): |
| 390 (WebKit::WebWidget::composite): |
| 391 * src/WebPopupMenuImpl.cpp: |
| 392 (WebKit::WebPopupMenuImpl::animate): |
| 393 * src/WebPopupMenuImpl.h: |
| 394 * src/WebViewImpl.cpp: |
| 395 (WebKit::WebViewImpl::resize): |
| 396 (WebKit::WebViewImpl::animate): |
| 397 (WebKit::WebViewImpl::paint): |
| 398 (WebKit::WebViewImpl::composite): |
| 399 (WebKit::WebViewImpl::fullFramePluginZoomLevelChanged): |
| 400 (WebKit::WebView::zoomLevelToZoomFactor): |
| 401 (WebKit::WebViewImpl::setRootLayerNeedsDisplay): |
| 402 (WebKit::WebViewImpl::setIsAcceleratedCompositingActive): |
| 403 (WebKit::WebViewImpl::doComposite): |
| 404 (WebKit::WebViewImpl::reallocateRenderer): |
| 405 (WebKit::WebViewImpl::updateLayerRendererViewport): |
| 406 (WebKit::WebViewImpl::graphicsContext3D): |
| 407 * src/WebViewImpl.h: |
| 408 * tests/CCLayerTreeHostTest.cpp: Removed. |
| 409 * tests/CCThreadTest.cpp: |
| 410 (WebCore::TEST): |
| 411 |
| 412 2011-05-17 Nat Duca <nduca@chromium.org> |
| 413 |
| 414 Reviewed by James Robinson. |
| 415 |
| 416 [chromium] Implement CCLayerTreeHost and CCLayerTreeHostImpl portions of
threaded compositor |
| 417 https://bugs.webkit.org/show_bug.cgi?id=58408 |
| 418 |
| 419 Redirect invalidates and scheduling into compositor when in |
| 420 threaded compositing mode. Add stress tests for CCLayerTreeHost. |
| 421 |
| 422 * WebKit.gypi: |
| 423 * public/WebWidget.h: |
| 424 * src/WebPopupMenuImpl.cpp: |
| 425 (WebKit::WebPopupMenuImpl::animate): |
| 426 * src/WebPopupMenuImpl.h: |
| 427 * src/WebViewImpl.cpp: |
| 428 (WebKit::WebViewImpl::animate): |
| 429 (WebKit::WebViewImpl::paint): |
| 430 (WebKit::WebViewImpl::animateAndLayout): |
| 431 (WebKit::WebViewImpl::updateLayers): |
| 432 (WebKit::WebViewImpl::composite): |
| 433 (WebKit::WebViewImpl::setRootLayerNeedsDisplay): |
| 434 (WebKit::WebViewImpl::setIsAcceleratedCompositingActive): |
| 435 (WebKit::WebViewImpl::doComposite): |
| 436 (WebKit::WebViewImpl::createLayerTreeHostContext3D): |
| 437 (WebKit::WebViewImpl::reallocateRenderer): |
| 438 (WebKit::WebViewImpl::updateLayerRendererSettings): |
| 439 (WebKit::WebViewImpl::updateLayerRendererViewport): |
| 440 * src/WebViewImpl.h: |
| 441 * tests/CCLayerTreeHostTest.cpp: Added. |
| 442 (WTF::CCLayerTreeHostTest::CCLayerTreeHostTest): |
| 443 (WTF::CCLayerTreeHostTest::animateAndLayout): |
| 444 (WTF::CCLayerTreeHostTest::beginCommitOnCCThread): |
| 445 (WTF::CCLayerTreeHostTest::beginCommitOnMainThread): |
| 446 (WTF::CCLayerTreeHostTest::commitOnCCThread): |
| 447 (WTF::CCLayerTreeHostTest::commitCompleteOnCCThread): |
| 448 (WTF::CCLayerTreeHostTest::commitCompleteOnMainThread): |
| 449 (WTF::CCLayerTreeHostTest::drawLayersAndPresentOnCCThread): |
| 450 (WTF::CCLayerTreeHostTest::updateLayers): |
| 451 (WTF::CCLayerTreeHostTest::onBeginTest): |
| 452 (WTF::CCLayerTreeHostTest::doEndTest): |
| 453 (WTF::CCLayerTreeHostTest::onEndTest): |
| 454 (WTF::CCLayerTreeHostTest::runTest): |
| 455 (WTF::CCLayerTreeHostTest::testTimeout): |
| 456 (WTF::MockLayerTreeHostClient::MockLayerTreeHostClient): |
| 457 (WTF::MockLayerTreeHostClient::createLayerTreeHostContext3D): |
| 458 (WTF::MockLayerTreeHostClient::animateAndLayout): |
| 459 (WTF::MockLayerTreeHostClient::updateLayers): |
| 460 (WTF::MockLayerTreeHostCommitter::create): |
| 461 (WTF::MockLayerTreeHostCommitter::commit): |
| 462 (WTF::MockLayerTreeHostCommitter::MockLayerTreeHostCommitter): |
| 463 (WTF::MockLayerTreeHostImpl::create): |
| 464 (WTF::MockLayerTreeHostImpl::beginCommit): |
| 465 (WTF::MockLayerTreeHostImpl::commitComplete): |
| 466 (WTF::MockLayerTreeHostImpl::drawLayersAndPresent): |
| 467 (WTF::MockLayerTreeHostImpl::MockLayerTreeHostImpl): |
| 468 (WTF::MockLayerTreeHostImplProxy::create): |
| 469 (WTF::MockLayerTreeHostImplProxy::createLayerTreeHostImpl): |
| 470 (WTF::MockLayerTreeHostImplProxy::MockLayerTreeHostImplProxy): |
| 471 (WTF::MockLayerTreeHost::MockLayerTreeHost): |
| 472 (WTF::MockLayerTreeHost::createLayerTreeHostImplProxy): |
| 473 (WTF::MockLayerTreeHost::updateLayers): |
| 474 (WTF::MockLayerTreeHost::createLayerTreeHostCommitter): |
| 475 (WTF::MockLayerTreeHost::beginCommit): |
| 476 (WTF::MockLayerTreeHost::commitComplete): |
| 477 (WTF::CCLayerTreeHostTest::doBeginTest): |
| 478 (WTF::CCLayerTreeHostTest::endTest): |
| 479 (WTF::CCLayerTreeHostTestShortlived1::CCLayerTreeHostTestShortlived1): |
| 480 (WTF::CCLayerTreeHostTestShortlived1::beginTest): |
| 481 (WTF::CCLayerTreeHostTestShortlived1::afterTest): |
| 482 (WTF::TEST_F): |
| 483 (WTF::CCLayerTreeHostTestShortlived2::CCLayerTreeHostTestShortlived2): |
| 484 (WTF::CCLayerTreeHostTestShortlived2::beginTest): |
| 485 (WTF::CCLayerTreeHostTestShortlived2::afterTest): |
| 486 (WTF::CCLayerTreeHostTestShortlived3::CCLayerTreeHostTestShortlived3): |
| 487 (WTF::CCLayerTreeHostTestShortlived3::beginTest): |
| 488 (WTF::CCLayerTreeHostTestShortlived3::afterTest): |
| 489 (WTF::CCLayerTreeHostTestCommitingWithContinuousRedraw::CCLayerTreeHostT
estCommitingWithContinuousRedraw): |
| 490 (WTF::CCLayerTreeHostTestCommitingWithContinuousRedraw::beginTest): |
| 491 (WTF::CCLayerTreeHostTestCommitingWithContinuousRedraw::commitCompleteOn
CCThread): |
| 492 (WTF::CCLayerTreeHostTestCommitingWithContinuousRedraw::drawLayersAndPre
sentOnCCThread): |
| 493 (WTF::CCLayerTreeHostTestCommitingWithContinuousRedraw::afterTest): |
| 494 (WTF::CCLayerTreeHostTestSetNeedsCommit1::CCLayerTreeHostTestSetNeedsCom
mit1): |
| 495 (WTF::CCLayerTreeHostTestSetNeedsCommit1::beginTest): |
| 496 (WTF::CCLayerTreeHostTestSetNeedsCommit1::drawLayersAndPresentOnCCThread
): |
| 497 (WTF::CCLayerTreeHostTestSetNeedsCommit1::commitOnCCThread): |
| 498 (WTF::CCLayerTreeHostTestSetNeedsCommit1::afterTest): |
| 499 (WTF::CCLayerTreeHostTestSetNeedsCommit2::CCLayerTreeHostTestSetNeedsCom
mit2): |
| 500 (WTF::CCLayerTreeHostTestSetNeedsCommit2::beginTest): |
| 501 (WTF::CCLayerTreeHostTestSetNeedsCommit2::drawLayersAndPresentOnCCThread
): |
| 502 (WTF::CCLayerTreeHostTestSetNeedsCommit2::commitOnCCThread): |
| 503 (WTF::CCLayerTreeHostTestSetNeedsCommit2::afterTest): |
| 504 (WTF::CCLayerTreeHostTestSetNeedsRedraw::CCLayerTreeHostTestSetNeedsRedr
aw): |
| 505 (WTF::CCLayerTreeHostTestSetNeedsRedraw::beginTest): |
| 506 (WTF::CCLayerTreeHostTestSetNeedsRedraw::drawLayersAndPresentOnCCThread)
: |
| 507 (WTF::CCLayerTreeHostTestSetNeedsRedraw::commitOnCCThread): |
| 508 (WTF::CCLayerTreeHostTestSetNeedsRedraw::afterTest): |
| 509 * tests/CCThreadTest.cpp: |
| 510 (WebCore::TEST): |
| 511 |
| 512 2011-06-24 Chris Rogers <crogers@google.com> |
| 513 |
| 514 Reviewed by Kenneth Russell. |
| 515 |
| 516 Enable Web Audio for Chromium Win |
| 517 https://bugs.webkit.org/show_bug.cgi?id=63338 |
| 518 |
| 519 * features.gypi: |
| 520 |
| 521 2011-06-24 Dominic Cooney <dominicc@chromium.org> |
| 522 |
| 523 Reviewed by Dimitri Glazkov. |
| 524 |
| 525 Convert shadow DOM-related tests to use window.internals |
| 526 https://bugs.webkit.org/show_bug.cgi?id=61671 |
| 527 |
| 528 Remove shadow DOM-related methods from Chromium API. These are not |
| 529 required any more. |
| 530 |
| 531 * public/WebElement.h: |
| 532 * src/WebElement.cpp: |
| 533 |
| 534 2011-06-24 Vsevolod Vlasov <vsevik@chromium.org> |
| 535 |
| 536 Reviewed by Darin Fisher. |
| 537 |
| 538 Web Inspector: [Chromium] Successfully prefetched page shows up as an er
ror in console |
| 539 https://bugs.webkit.org/show_bug.cgi?id=62396 |
| 540 |
| 541 * public/WebURLError.h: |
| 542 (WebKit::WebURLError::WebURLError): |
| 543 * src/WebURLError.cpp: |
| 544 (WebKit::WebURLError::operator=): |
| 545 (WebKit::WebURLError::operator ResourceError): |
| 546 |
| 547 2011-06-23 Yury Semikhatsky <yurys@chromium.org> |
| 548 |
| 549 Reviewed by Pavel Feldman. |
| 550 |
| 551 [Chromium] Web Inspector: provide context menu item for enabling native
worker inspection |
| 552 https://bugs.webkit.org/show_bug.cgi?id=63258 |
| 553 |
| 554 * src/js/DevTools.js: |
| 555 (): |
| 556 |
1 2011-06-23 John Bates <jbates@google.com> | 557 2011-06-23 John Bates <jbates@google.com> |
2 | 558 |
3 Reviewed by James Robinson. | 559 Reviewed by James Robinson. |
4 | 560 |
5 Fix latch deadlock when GPU process crashes or context is lost | 561 Fix latch deadlock when GPU process crashes or context is lost |
6 https://bugs.webkit.org/show_bug.cgi?id=63189 | 562 https://bugs.webkit.org/show_bug.cgi?id=63189 |
7 | 563 |
8 * src/WebViewImpl.cpp: | 564 * src/WebViewImpl.cpp: |
9 (WebKit::WebViewImpl::composite): | 565 (WebKit::WebViewImpl::composite): |
10 | 566 |
(...skipping 8353 matching lines...) Loading... |
8364 https://bugs.webkit.org/show_bug.cgi?id=53728 | 8920 https://bugs.webkit.org/show_bug.cgi?id=53728 |
8365 | 8921 |
8366 * src/IDBCallbacksProxy.cpp: | 8922 * src/IDBCallbacksProxy.cpp: |
8367 (WebCore::IDBCallbacksProxy::onBlocked): | 8923 (WebCore::IDBCallbacksProxy::onBlocked): |
8368 * src/IDBCallbacksProxy.h: | 8924 * src/IDBCallbacksProxy.h: |
8369 * src/WebIDBCallbacksImpl.cpp: | 8925 * src/WebIDBCallbacksImpl.cpp: |
8370 (WebCore::WebIDBCallbacksImpl::onBlocked): | 8926 (WebCore::WebIDBCallbacksImpl::onBlocked): |
8371 * src/WebIDBCallbacksImpl.h: | 8927 * src/WebIDBCallbacksImpl.h: |
8372 | 8928 |
8373 == Rolled over to ChangeLog-2011-02-16 == | 8929 == Rolled over to ChangeLog-2011-02-16 == |
OLD | NEW |