[webkit-dev] [webkit-changes] [47447] trunk
Adam Roben
aroben at apple.com
Tue Aug 18 15:12:47 PDT 2009
On Aug 18, 2009, at 3:53 PM, bweinstein at apple.com wrote:
> Modified: trunk/WebKitTools/DumpRenderTree/win/UIDelegate.cpp (47446
> => 47447)
>
> --- trunk/WebKitTools/DumpRenderTree/win/UIDelegate.cpp 2009-08-18
> 19:53:27 UTC (rev 47446)
> +++ trunk/WebKitTools/DumpRenderTree/win/UIDelegate.cpp 2009-08-18
> 19:53:31 UTC (rev 47447)
> @@ -43,6 +43,8 @@
> #include <WebKit/WebKit.h>
> #include <stdio.h>
>
> +#include <atlbase.h>
> +
> using std::wstring;
>
> class DRTUndoObject {
> @@ -563,6 +565,17 @@
> /* [in] */ IWebSecurityOrigin *origin,
> /* [in] */ BSTR databaseIdentifier)
> {
> + CComBSTR protocol;
> + CComBSTR host;
> + unsigned short port;
> +
> + origin->protocol(&protocol);
> + origin->host(&host);
> + origin->port(&port);
> +
> + if (!done && gLayoutTestController->dumpDatabaseCallbacks())
> + printf("UI DELEGATE DATABASE CALLBACK:
> exceededDatabaseQuotaForSecurityOrigin:{%S, %S, %i} database:%S\n",
> protocol, host, port, databaseIdentifier);
> +
>
We avoid ATL in WebKit/DRT code because ATL is not included with VC++
Express. Presumably this patch has broken the VC++ Express build.
-Adam
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-dev/attachments/20090818/3f1b2606/attachment.html>
More information about the webkit-dev
mailing list