Changeset 168608 in webkit


Ignore:
Timestamp:
May 11, 2014 11:21:47 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

REGRESSION(r168603): [GTK] Build broken.
https://bugs.webkit.org/show_bug.cgi?id=132810

Patch by Seongjun Kim <isAir@company100.com> on 2014-05-11
Reviewed by Carlos Garcia Campos.

  • UIProcess/API/gtk/WebKitWebContext.cpp:

(createDefaultWebContext):
Construct a WebContextConfiguration object and pass it to WebContext::create.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r168605 r168608  
     12014-05-11  Seongjun Kim  <isAir@company100.com>
     2
     3        REGRESSION(r168603): [GTK] Build broken.
     4        https://bugs.webkit.org/show_bug.cgi?id=132810
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * UIProcess/API/gtk/WebKitWebContext.cpp:
     9        (createDefaultWebContext):
     10        Construct a WebContextConfiguration object and pass it to WebContext::create.
     11
    1122014-05-11  Anders Carlsson  <andersca@apple.com>
    213
  • trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp

    r165760 r168608  
    254254    WebKitWebContextPrivate* priv = webContext->priv;
    255255
    256     priv->context = WebContext::create(WebCore::filenameToString(injectedBundleFilename().data()));
     256    WebContextConfiguration webContextConfiguration;
     257    webContextConfiguration.injectedBundlePath = WebCore::filenameToString(injectedBundleFilename().data());
     258    priv->context = WebContext::create(std::move(webContextConfiguration));
     259
    257260    priv->requestManager = webContext->priv->context->supplement<WebSoupCustomProtocolRequestManager>();
    258261    priv->context->setCacheModel(CacheModelPrimaryWebBrowser);
Note: See TracChangeset for help on using the changeset viewer.