summaryrefslogtreecommitdiffstats
path: root/lib/url_request_context_getter_qt.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup after chromium update.Zeno Albisser2013-07-241-1/+1
| | | | | | | | | | | | | | | | | | | - Implement recently added pure virtual members: BrowserContextQt::GetPath() const BrowserContextQt::RequestMIDISysExPermission(...) - Remove obsolete function GetSpeechRecognitionPreferences. - Rename usage of GetActiveURL() to GetVisibleURL(). - Update namespace for usage of type WebPluginGeometry. - Adjust parameters of RenderWidgetHostViewQt::TextInputChanged. - Rename RenderWidgetHostViewQt::RenderViewGone to RenderProcessGone - set_http_server_properties now takes a scoped_ptr. - Rename WebDropData to content::DropData. - Rename WebMenuItem to content::MenuItem. - webkit/support/webkit_support.gyp has been moved to webkit/webkit_resources.gyp. Change-Id: I6d5d281b797a8f6197ecb53a08798bd1f6845754 Reviewed-by: Andras Becsi <andras.becsi@digia.com>
* Add support for file and data url scheme.Zeno Albisser2013-07-161-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | Local file and data url support can simply be added by registering the appropriate ProtocolHandlers. Displaying the contents of a directory is slightly more complex. This requires access to some html resource files that can be used to list the contents in rows. For Chromium such resource files are usually contained in a .pak file which is shipped with the binary. Since deploying additional files is very complicated for Qt, we want to use the Qt Resource System to bundle .pak files. Therefore this patch adds handling of rcc content generated from a .qrc file to our gyp_generator.prf. Further it replaces the regular ResourceBundle implementation with a Qt specific one. And it also implements a DataPackQt class that allows using DataPack instances with data from a QByteArray and therefore from the Qt Resource System. Change-Id: Ic41e34fbd9aec8596cbc85666a762ecdaa604edc Reviewed-by: Andras Becsi <andras.becsi@digia.com>
* Set up TransportSecurityState for UrlRequestContext.Michael BrĂ¼ning2013-07-121-0/+4
| | | | | | | | | | Trying to connect to an ssl socket will trigger an assertion now if there is no valid TransportSecurityState specified. Hence, we create one now and pass it with the HttpNetworkSession::Params. Change-Id: I61cda2d0b662a95d32085092e74e0499c008c57f Reviewed-by: Andras Becsi <andras.becsi@digia.com>
* Update include path for string_util.h.Zeno Albisser2013-06-281-1/+1
| | | | | | | | Suggested by mbroadst. Change-Id: I536da2bd57ad3467538f7e83070a9641f6ed5993 Reviewed-by: Matt Broadstone <mbroadst@gmail.com> Reviewed-by: Andras Becsi <andras.becsi@digia.com>
* And shell is out !Pierre Rossi2013-06-101-0/+156
Introduce a few more bits of our own very basic implementations (URLRequestContextGetter and NetworkDelegate subclasses). Still need to figure out the appropriate dependancies in blinq.gypi