2011-02-11 Zhenyao Mo Reviewed by Kenneth Russell. [chromium] Allow turning off multisampling through web preference settings https://bugs.webkit.org/show_bug.cgi?id=54321 * public/WebSettings.h: Add a flag for multisampling setting. * src/WebSettingsImpl.cpp: Ditto. (WebKit::WebSettingsImpl::setOpenGLMultisamplingEnabled): * src/WebSettingsImpl.h: Ditto. 2011-02-12 Jochen Eisinger Reviewed by Jeremy Orlow. Implement IDBObjectStore::clear https://bugs.webkit.org/show_bug.cgi?id=54193 * src/IDBObjectStoreProxy.cpp: (WebCore::IDBObjectStoreProxy::clear): * src/IDBObjectStoreProxy.h: * src/WebIDBObjectStoreImpl.cpp: (WebKit::WebIDBObjectStoreImpl::clear): * src/WebIDBObjectStoreImpl.h: 2011-02-11 David Grogan Reviewed by Jeremy Orlow. indexeddb: add onBlocked to WebKit::WebIDBCallbacks https://bugs.webkit.org/show_bug.cgi?id=54329 * public/WebIDBCallbacks.h: (WebKit::WebIDBCallbacks::onBlocked): 2011-02-11 Adam Klein Reviewed by Darin Fisher. [fileapi] Add support for filesystem: URI handling https://bugs.webkit.org/show_bug.cgi?id=53529 Changes to Chromium WebKit API required to expose the FileSystem type to WebCore's fileapi code, since the type is part of the filesystem URI. * src/AsyncFileSystemChromium.cpp: (WebCore::AsyncFileSystemChromium::AsyncFileSystemChromium): * src/AsyncFileSystemChromium.h: (WebCore::AsyncFileSystemChromium::create): * src/LocalFileSystemChromium.cpp: (WebCore::LocalFileSystem::readFileSystem): (WebCore::LocalFileSystem::requestFileSystem): * src/WebFileSystemCallbacksImpl.cpp: (WebKit::WebFileSystemCallbacksImpl::WebFileSystemCallbacksImpl): (WebKit::WebFileSystemCallbacksImpl::didOpenFileSystem): * src/WebFileSystemCallbacksImpl.h: * src/WorkerAsyncFileSystemChromium.cpp: (WebCore::WorkerAsyncFileSystemChromium::WorkerAsyncFileSystemChromium): * src/WorkerAsyncFileSystemChromium.h: (WebCore::WorkerAsyncFileSystemChromium::create): 2011-02-10 Nate Chapin Reviewed by Adam Barth. Update calls to DocumentWriter. https://bugs.webkit.org/show_bug.cgi?id=50489 * src/ContextMenuClientImpl.cpp: (WebKit::ContextMenuClientImpl::getCustomMenuFromDefaultItems): * src/FrameLoaderClientImpl.cpp: (WebKit::FrameLoaderClientImpl::finishedLoading): * src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::encoding): (WebKit::WebFrameImpl::loadJavaScriptURL): * src/WebPageSerializerImpl.cpp: (WebKit::WebPageSerializerImpl::preActionBeforeSerializeOpenTag): (WebKit::WebPageSerializerImpl::serialize): * src/WebSearchableFormData.cpp: (HTMLNames::GetFormEncoding): * src/WebViewImpl.cpp: (WebKit::WebViewImpl::pageEncoding): 2011-02-10 Pavel Feldman Not reviewed: chromium build fix. * src/WebDevToolsAgentImpl.cpp: (WebKit::WebDevToolsAgent::shouldInterruptForMessage): 2011-02-10 Jochen Eisinger Reviewed by Jeremy Orlow. [chromium] add WebIDBObjectStore::clear method https://bugs.webkit.org/show_bug.cgi?id=54149 * public/WebIDBObjectStore.h: (WebKit::WebIDBObjectStore::put): (WebKit::WebIDBObjectStore::deleteFunction): (WebKit::WebIDBObjectStore::clear): 2011-02-10 Avi Drissman Reviewed by Darin Fisher.