Changeset 82526 in webkit


Ignore:
Timestamp:
Mar 30, 2011 6:06:24 PM (13 years ago)
Author:
Martin Robinson
Message:

2011-03-30 Martin Robinson <mrobinson@igalia.com>

Fix the GTK+ WebKit2 build.

  • Shared/WebGraphicsContext.cpp: (WebKit::WebGraphicsContext::WebGraphicsContext):
  • WebProcess/WebPage/gtk/WebPageGtk.cpp: (WebKit::WebPage::platformCanHandleRequest):
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r82512 r82526  
     12011-03-30  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Fix the GTK+ WebKit2 build.
     4
     5        * Shared/WebGraphicsContext.cpp:
     6        (WebKit::WebGraphicsContext::WebGraphicsContext):
     7        * WebProcess/WebPage/gtk/WebPageGtk.cpp:
     8        (WebKit::WebPage::platformCanHandleRequest):
     9
     102011-03-29  Martin Robinson  <mrobinson@igalia.com>
     11
     12        [GTK] Build failed with ‘GDK_KEY_KP_Space’ was not declared in this scope
     13        https://bugs.webkit.org/show_bug.cgi?id=55314
     14
     15        Build fix for older versions of GTK+. Use the deprecated names for GDK key
     16        defines and include GtkVersioning.h to allow building on newer versions
     17        of GTK+.
     18
     19        * Shared/gtk/WebEventFactory.cpp:
     20        (WebKit::isGdkKeyCodeFromKeyPad): Update key defines.
     21
    1222011-03-30  Steve Falkenburg  <sfalken@apple.com>
    223
  • trunk/Source/WebKit2/Shared/WebGraphicsContext.cpp

    r78069 r82526  
    2727#include "WebGraphicsContext.h"
    2828
     29#if PLATFORM(GTK)
     30#include <WebCore/PlatformContextCairo.h>
     31#endif
     32
    2933using namespace WebCore;
    3034
     
    3539    : m_platformContext(graphicsContext->platformContext())
    3640#elif PLATFORM(GTK)
    37     : m_platformContext(graphicsContext->platformContext())
     41    : m_platformContext(graphicsContext->platformContext()->cr())
    3842#endif
    3943{
Note: See TracChangeset for help on using the changeset viewer.